【发布时间】:2012-04-28 21:13:59
【问题描述】:
所以我将getDisplayPosition 从 Kinect SDK 的测试版转换为完整版。这是我现在拥有的
原版
private Point getDisplayPosition(Joint joint)
{
float depthX, depthY;
nui.SkeletonEngine.SkeletonToDepthImage(joint.Position, out depthX, out depthY);
depthX = Math.Max(0, Math.Min(depthX * 320, 320)); //convert to 320, 240 space
depthY = Math.Max(0, Math.Min(depthY * 240, 240)); //convert to 320, 240 space
int colorX, colorY;
ImageViewArea iv = new ImageViewArea();
// only ImageResolution.Resolution640x480 is supported at this point
nui.NuiCamera.GetColorPixelCoordinatesFromDepthPixel(ImageResolution.Resolution640x480, iv, (int)depthX, (int)depthY, (short)0, out colorX, out colorY);
// map back to skeleton.Width & skeleton.Height
return new Point((int)(skeleton.Width * colorX / 640.0), (int)(skeleton.Height * colorY / 480));
}
我的版本
private Point getDisplayPosition(Joint joint)
{
float depthX, depthY;
KinectSensor sensor = kinectSensorChooser1.Kinect;
DepthImageFormat depth = DepthImageFormat.Resolution320x240Fps30;
depthX = 320;
depthY = 240;
sensor.MapSkeletonPointToDepth(joint.Position, depth);
depthX = Math.Max(0, Math.Min(depthX * 320, 320));
depthY = Math.Max(0, Math.Min(depthY * 240, 240));
int colorX, colorY;
colorX = 320;
colorY = 240;
return new Point((int)(skeleton.Width * colorX / 640.0), (int)(skeleton.Height * colorY / 480));
}
基本上我想知道我的版本是否会和原版做同样的事情,如果不是,如何修复它。
【问题讨论】:
-
参考这个链接它可以帮助你robrelyea.wordpress.com/2012/02/01/…
-
我之前在 joirneys 中偶然发现了 aceoss,但还是谢谢