【发布时间】:2012-03-21 03:49:04
【问题描述】:
我在新的 microsoft kinect sdk 中找不到这个方法
nui.SkeletonEngine.DepthImageToSkeleton
有人可以请一些关于如何做到这一点的指示吗?
Microsoft Kinect SDK depth data to real world coordinates
在新的 Microsoft Kinect SDK 中?
【问题讨论】:
标签: kinect
我在新的 microsoft kinect sdk 中找不到这个方法
nui.SkeletonEngine.DepthImageToSkeleton
有人可以请一些关于如何做到这一点的指示吗?
Microsoft Kinect SDK depth data to real world coordinates
在新的 Microsoft Kinect SDK 中?
【问题讨论】:
标签: kinect
方法已更改为SkeletonPoint DepthImageFrame.MapToSkeletonPoint(int depthX, int depthY)。与新 SDK 中的所有其他内容一样,它位于 Microsoft.Kinect 命名空间中。
给定一个DepthImageFrame:
SkeletonPoint point = depthImageFrame.MapToSkeletonPoint(depthX, depthY);
新版本发生了很多变化。可以在此处找到 API 更改列表:http://robrelyea.wordpress.com/2012/02/01/k4w-details-of-api-changes-from-beta2-to-v1-managed/#namespacesAssemblyName
【讨论】: