cpvr 2013 tutorial
play

CPVR 2013 Tutorial Runtime Managed Toolkit Skeletal Tracking - PowerPoint PPT Presentation

CPVR 2013 Tutorial Runtime Managed Toolkit Skeletal Tracking Drivers Applications Native IR Emitter Color Sensor IR Depth Sensor Tilt Motor Microphone Array KinectSensor kinect = null; void StartKinectST() { kinect =


  1. CPVR 2013 Tutorial

  2. Runtime Managed Toolkit Skeletal Tracking Drivers Applications Native

  3. IR Emitter Color Sensor IR Depth Sensor Tilt Motor Microphone Array

  4. KinectSensor kinect = null; void StartKinectST() { kinect = KinectSensor.KinectSensors.FirstOrDefault(s => s.Status == KinectStatus.Connected); // Get first Kinect Sensor kinect.SkeletonStream.Enable(); // Enable skeletal tracking skeletonData = new Skeleton[kinect.SkeletonStream.FrameSkeletonArrayLength]; // Allocate ST data kinect.SkeletonFrameReady += new EventHandler<SkeletonFrameReadyEventArgs>(kinect_SkeletonFrameReady); // Get Ready for Skeleton Ready Events kinect.Start(); // Start Kinect sensor } private void kinect_SkeletonFrameReady(object sender, SkeletonFrameReadyEventArgs e) { using (SkeletonFrame skeletonFrame = e.OpenSkeletonFrame()) // Open the Skeleton frame { if (skeletonFrame != null && this.skeletonData != null) // check that a frame is available { skeletonFrame.CopySkeletonDataTo(this.skeletonData); // get the skeletal in this frame ... HANDLE SKELETAL DATA HERE ... } } }

  5. http://go.Microsoft.com/fwlink/?LinkId=236070 http://go.Microsoft.com/fwlink/?LinkId=236056 http://go.Microsoft.com/fwlink/?LinkId=236069 http://kinectforwindows.codeplex.com/

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend