コード例 #1
0
 public FaceTrackingViewer()
 {
     this.trackedSkeleton = new SkeletonFaceTracker(this.outputBox);
 }
コード例 #2
0
 private void resetFaceTracking()
 {
     this.trackedSkeleton.Dispose();
     this.trackedSkeleton = new SkeletonFaceTracker(this.outputBox);
     System.Diagnostics.Debug.WriteLine("Face Traking Reset...");
 }