public FaceTrackingViewer()
 {
     this.trackedSkeleton = new SkeletonFaceTracker(this.outputBox);
 }
 private void resetFaceTracking()
 {
     this.trackedSkeleton.Dispose();
     this.trackedSkeleton = new SkeletonFaceTracker(this.outputBox);
     System.Diagnostics.Debug.WriteLine("Face Traking Reset...");
 }