Kinect coordinates new SDK

I cannot find this method in the new microsoft kinect sdk nui.SkeletonEngine.DepthImageToSkeleton

Can anyone comment on some details on how to do this?

Microsoft Kinect SDK Depth Data for Real World Coordinates

in the new Microsoft Kinect SDK?

+3


source to share


1 answer


The method changed to SkeletonPoint DepthImageFrame.MapToSkeletonPoint(int depthX, int depthY)

. Like everything else in the new SDK, it is located in the Microsoft.Kinect namespace.

Given the DepthImageFrame :



SkeletonPoint point = depthImageFrame.MapToSkeletonPoint(depthX, depthY);

      

A lot has changed in the new version. The API changelog can be found here: http://robrelyea.wordpress.com/2012/02/01/k4w-details-of-api-changes-from-beta2-to-v1-managed/#namespacesAssemblyName

+5


source







All Articles