Kinect for windows开发准备

如果要进行Kinect for windows的开发,首先要下载它的SDK和ToolKit,下载地址为:http://www.microsoft.com/en-us/kinectforwindows/develop/developer-downloads.aspx。

现在最新的版本是v1.7,安装环境是Windows 7,windows 8,Windwos Embedded Standard 7。开发工具为VS2012。
在VS中没有提供Kinect for windows的模板,只要创建桌面应用都可以来启动Kinect for windows。我们创建一个WinForm窗体来启动一下Kinect for windows。
首选:创建一个Winform项目。
其次:在项目引用中添加Kinect引用,Microsoft.Kinect.dll所在路径为:C:\Program Files\Microsoft SDKs\Kinect\v1.7\Assemblies(视安装路径而定)
再次:在项目中添加using Microsoft.Kinect命名空间。
最后书写C#代码:
       
  
  
  
  
  1. KinectSensor kinectsensor = null//定义一个Kinect对象  
  2.         private void Form1_Shown(object sender, EventArgs e)  
  3.         {  
  4.             //从Kinect集合中找到连接上的Kinect  
  5.             foreach (KinectSensor ks in KinectSensor.KinectSensors)  
  6.             {  
  7.                 //找到连接的Kinect  
  8.                 if (ks.Status == KinectStatus.Connected)  
  9.                 {  
  10.                     kinectsensor = ks; //把找到连接的Kinect对象赋给全局Kinect对象  
  11.                     kinectsensor.Start();//开始工作,即可以采集摄像头和红外摄像头信息  
  12.                     this.Text = "Kinect开始工作……";//提示信息  
  13.                     return;  
  14.                 }  
  15.             }  
  16.         }  
  17.         private void Form1_FormClosing(object sender, FormClosingEventArgs e)  
  18.         {  
  19.             if (kinectsensor.Status == KinectStatus.Connected)  
  20.             {  
  21.                 kinectsensor.Stop();//结束Kinect采集工作  
  22.                 MessageBox.Show ( "Kinect结束工作!");  
  23.             }  
  24.         }  
  25.     } 

一般情况下,我们在系统启动的时候启动Kinect,在系统关闭时关闭Kinect,当然要根据自己的项目情况而定。

你可能感兴趣的:(windows,开发,kinect)