我目前正在使用SimpleOpenNI和Kinect来开发手语编程项目.我在我的32位计算机上安装了必备程序(驱动程序,NITE,OpenNI),我的项目在该计算机上编译得很好.
我在64位计算机上安装了64位版本的prereq程序.安装prereq程序后,我将SimpleOpenNI文件夹(我试过压缩和解压缩)放在/ Documents/Processing/libraries中.当我尝试编译时,它在处理中给出了一个错误:
找不到SimpleOpenNI库的库必须安装在'sketchbook'文件夹中名为'libraries'的文件夹中.
我尝试了很多解决方案:我尝试安装32位程序,直接从网站安装程序,并在另一台64位计算机上试用.
有没有人有什么建议?谢谢.
当我从列表中访问Point时,我在设置Point的Y坐标时遇到了一些麻烦.
例如,这是有效的.
System.Windows.Point test = new System.Windows.Point(6,5);
test.Y = 6;
Run Code Online (Sandbox Code Playgroud)
但是,如果我有一个点列表,我通过列表访问一个点来设置Y坐标,我收到一个错误.
List<System.Windows.Point> bfunction = new List<System.Windows.Point>();
bfunction.Add(new System.Windows.Point(0, 1));
bfunction[0].Y = 6;
Run Code Online (Sandbox Code Playgroud)
bfunction [0]带有下划线并给出错误"无法修改'System.Collections.Generic.List.this [int]'的返回值,因为它不是变量."
任何帮助,将不胜感激.