【发布时间】:2014-10-10 17:15:04
【问题描述】:
给定一个颜色像素坐标(x,y),有没有办法找到对应的深度图像坐标? 我研究了坐标映射,使用它可以将骨架像素映射到颜色像素。我正在识别颜色流中的对象,我想知道它们使用深度流的距离。我在这里忽略了什么吗?
【问题讨论】:
标签: c# image-processing kinect emgucv
给定一个颜色像素坐标(x,y),有没有办法找到对应的深度图像坐标? 我研究了坐标映射,使用它可以将骨架像素映射到颜色像素。我正在识别颜色流中的对象,我想知道它们使用深度流的距离。我在这里忽略了什么吗?
【问题讨论】:
标签: c# image-processing kinect emgucv
DepthImagePoint headDepthPoint = depth.MapSkeletonPointToDepthPoint(skel.Joints[JointType.Head].Position);
ColorImagePoint headColorPoint = depth.MapDepthPointToColorPoint。 X,头部深度点。 Y, ColorImageFormat.RgbResolution640x480Fps30);
如果有像“MapColorPointToDepthPoint”这样的方法可以试试这个
【讨论】: