Kinect开发教程六:OpenNI2简介、安装与VS开发环境配置
?
安装驱动与OpenNI2
????? 首先确保操作系统是Win7及以上,到Kinect for Windows SDK官网下载安装包:http://www.microsoft.com/en-us/kinectforwindows/develop/overview.aspx。
????? 小斤在安装过程没有遇到任何问题,安装完毕后,插上Kinect就会发现灯亮可驱动。
????? 打开开始菜单中的Kinect for Windows Developer Toolkit,可以找一些Samples来运行,检查是否安装正确,像Face Tracking Visualization都是很有意思的范例。
?
????? 接着,我们来到http://www.openni.org/下载最新的OpenNI2 SDK进行安装。安装完毕后,可以运行开始菜单的OpenNI2/NiViewer等示例程序进行检查。
VS开发环境
????? VS开发环境的配置与OpenNI1.X类似,还是配置include与library。
????? 小斤安装的是32位OpenNI2,安装目录位C:\OpenNI2\,在OpenNI2安装完毕后,安装程序自动添加了以下环境变量:(注意,安装64位的话,变量名带有64后缀,配置也相应需要变化)
????? OPENNI2_INCLUDE=C:\OpenNI2\Include\
????? OPENNI2_LIB=C:\OpenNI2\Lib\
????? OPENNI2_REDIST=C:\OpenNI2\Redist\
?
????? 新建VS C++项目后,右击进入项目属性,进行以下配置:
????【1】Configuration Properties,C/C++,Gerenal,在Additiaonal Include Directories项中添加$(OPENNI2_INCLUDE)。
????【2】Configuration Properties,Linker,Gerenal,在Additiaonal Library Directories项中添加$(OPENNI2_LIB)。
????【3】Configuration Properties,Linker,Input,在Additiaonal Dependencies项中添加$(OPENNI2_LIB)。
?
?????最后需要注意的是,大家还需要拷贝\OpenNI2\Redist目录下的所有文件到VS的工作目录(如果不通过VS启动,则拷贝到程序执行目录)才可以正确运行,其中包含了OpenNI2启动所需的动态链接库等内容,详见以下解释(Copied From OpenNI Document):
?????Copy all the files from OpenNI's redist directory (see environment variable "$(OPENNI2_REDIST)" or "$(OPENNI2_REDIST64)") to your working directory. (The defaults are C:\Program Files\OpenNI2\Redist or C:\Program Files (x86)\OpenNI2\Redist). Be aware that when you run from command line, the working directory is the directory where the executable can be found, and where you run from Visual Studio the default directory is where the project file (.vcproj, .vcxproj) can be found.
?
----------------------------------
作者:小斤(陈忻)
新浪围脖:@小斤陈
本文属于原创文章,如需转载引用请注明原文作者和链接,谢谢。