我是 kinect 编程的新手,我正在使用 kinect 和 opencv 进行球跟踪。我们都知道 kinect 提供深度数据,代码如下:
DepthImagePoint righthandDepthPoint =
sensor.CoordinateMapper.MapSkeletonPointToDepthPoint
(
me.Joints[JointType.HandRight].Position,
DepthImageFormat.Resolution640x480Fps30
);
double rightdepthmeters = (righthandDepthPoint.Depth);
使用这个,我可以MapSkeletonPointToDepthPoint()
通过指定关节类型来获得右手的深度。
是否可以通过在图像中指定位置来获取其他对象的深度?给定坐标..我想获得该坐标中对象的深度?