user1282441
user1282441

Reputation: 97

Kinect coordinates new SDK

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

Can someone please some indications on how to accomplish this?

Microsoft Kinect SDK depth data to real world coordinates

in the new Microsoft Kinect SDK?

Upvotes: 3

Views: 1080

Answers (1)

lumberjack4
lumberjack4

Reputation: 2872

The method has changed to SkeletonPoint DepthImageFrame.MapToSkeletonPoint(int depthX, int depthY). Like everything else in the new SDK, its located in the Microsoft.Kinect namespace.

Given a DepthImageFrame:

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

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

Upvotes: 5

Related Questions