This project requires the Kinect for Windows SDK. If you want to learn how to use theKinect for Windows SDK, head over to theChannel 9 and their quick start series. This toolkit contains both a WinForm and WPF version.
WPF:Depth Data Extension Methods:
Skeleton Data Extension Methods:
Controls:
|
WinForm:Depth Data Extension Methods:
Skeleton Data Extension Methods:
|
Sample usage:
void sensor_ColorFrameReady(AllFramesReadyEventArgs e) { using (ColorImageFrame colorFrame = e.OpenColorImageFrame()) { if (colorFrame == null) { return; } //set image ColorImage.Source = colorFrame.ToBitmapSource(); if (_saveColorFrame) { //save image colorFrame.ToBitmapSource().Save(DateTime.Now.ToString("yyyyMMddHHmmss") + "_color.jpg", ImageFormat.Jpeg); } } } void sensor_DepthFrameReady(AllFramesReadyEventArgs e) { using (DepthImageFrame depthFrame = e.OpenDepthImageFrame()) { if (depthFrame == null) { return; } //turn raw data into an array of distances; var depthArray = depthFrame.ToDepthArray(); MidPointDistanceViaGetDistanceText.Text = depthFrame.GetDistance(depthFrame.Width/2, depthFrame.Height/2).ToString(); //image DepthImageWithMinDistance.Source = depthArray.ToBitmapSource(depthFrame.Width, depthFrame.Height, _minDistance, Colors.Red); //image DepthImage.Source = depthFrame.ToBitmapSource(); if (_saveDepthFrame) { _saveDepthFrame = false; depthFrame.ToBitmapSource().Save(DateTime.Now.ToString("yyyyMMddHHmmss") + "_depth.jpg", ImageFormat.Jpeg); } } }
With KinectKit you can:
Within Chant Developer Workbench, you can:
The KinectKit component library includes a movement management class that provides you a simple way to track and map movement with Microsoft Kinect sensors.
The movement management class, ChantKM, enables you to start and stop color, depth, skeleton, and audio data collection with Microsoft Kinect sensors. Your application can also use the KinectSensor and adjunct classes to manage low-level functions if desired.
With the ChantKM class, you can detect movement, process color, depth, and skeleton data, and record audio to a file. Your application uses the ChantKM class to manage the activities for interacting with the Microsoft Kinect sensor on behalf of your application. The ChantKM class manages the resources and interacts directly with the Natural User Interface API (NAPI) runtime.
Your application receives status notifications through event callbacks.
Speech recognition and synthesis are supported with the SpeechKit ChantSR and ChantTTS classes. See SpeechKit for more information about integrating speech technology.
The ChantKM class encapsulates the NAPI functions to make the process of tracking movement with Microsoft Kinect sensors simple and efficient for your application.
The ChantKM class simplifies the process of managing Microsoft Kinect sensors by handling the low-level activities directly with the sensor.
You instantiate a ChantKM class object before you want to start tracking movement within your application. You destroy the ChantKM class object and release its resources when you no longer want to track movement within your application
http://channel9.msdn.com/coding4fun/kinect/KinectKit-a-commercial-library-to-help-speed-your-Kinect-for-Windows-SDK-application-development
http://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=c4fkinect&DownloadId=336481&FileTime=129725745401400000&Build=19612