コード例 #1
0
ファイル: TemplatedPostureDetector.cs プロジェクト: dtx/KMPC
        public void AddTemplate(Skeleton skeleton)
        {
            RecordedPath recordedPath = new RecordedPath(skeleton.Joints.Count);

            recordedPath.Points.AddRange(skeleton.Joints.ToListOfVector2());

            LearningMachine.AddPath(recordedPath);
        }
コード例 #2
0
        public void AddTemplate(ReplaySkeletonData skeleton)
        {
            RecordedPath recordedPath = new RecordedPath(skeleton.Joints.Count);

            recordedPath.Points.AddRange(skeleton.Joints.ToListOfVector2());

            LearningMachine.AddPath(recordedPath);
        }
コード例 #3
0
 public void AddPath(RecordedPath path)
 {
     path.CloseAndPrepare();
     Paths.Add(path);
 }
コード例 #4
0
 public void EndRecordTemplate()
 {
     LearningMachine.AddPath(path);
     path = null;
 }
コード例 #5
0
 public void StartRecordTemplate()
 {
     path = new RecordedPath(WindowSize);
 }
コード例 #6
0
ファイル: LearningMachine.cs プロジェクト: sopankhosla/harley
 public void AddPath(RecordedPath path)
 {
     path.CloseAndPrepare();
     Paths.Add(path);
     SaveTheGestureInFile();
 }
コード例 #7
0
ファイル: LearningMachine.cs プロジェクト: Hitchhikrr/harley
 public void AddPath(RecordedPath path)
 {
     path.CloseAndPrepare();
     Paths.Add(path);
     SaveTheGestureInFile();
 }
コード例 #8
0
 public void EndRecordTemplate()
 {
     LearningMachine.AddPath(path);
     path = null;
 }
コード例 #9
0
 public void StartRecordTemplate()
 {
     path = new RecordedPath(WindowSize);
 }
コード例 #10
0
ファイル: LearningMachine.cs プロジェクト: dtx/KMPC
 public void AddPath(RecordedPath path)
 {
     path.CloseAndPrepare();
     Paths.Add(path);
 }