1

问题

所以我正在使用 kinect 工具箱(来源: http: //kinecttoolbox.codeplex.com/)并且想要检测除圆形之外的其他形状。但我找不到如何为任何其他形状制作“CircleKB.save”类型文件(由该工具箱使用)的方法,因为我不知道这个圆形知识库文件中有什么或它是如何制作的. 或者简单地告诉我如何在此工具箱中添加自定义手势。

4

1 回答 1

0

您应该像这样编辑您的“Learningmachine.cs”:

public void AddPath(RecordedPath path)
{
    path.CloseAndPrepare();
    Paths.Add(path);
    SaveTheGestureInFile();
}

public void SaveTheGestureInFile()
{
    using (Stream recordStream = File.Create(@"D:\Research\Kinect Toolbox\Sources\GesturesViewer\Data\abc.save")) //wherever you want to save the file.
    {
        Persist(recordStream);
    }
}
于 2013-04-23T10:01:42.610 回答