我正在创建一个程序,它可以从 Kinect 截取两张截图(一张 IR 图像和一张深度图像),将其直接加载到两个图片框中,然后通过单击鼠标测量 IR 截图中一个点的位置。
我在红外屏幕截图中获取 x- 和 y- 位置没有问题,我需要的也是以毫米为单位的深度 - 考虑到 IR 和深度图像是从同一个相机拍摄的,所以当我点击鼠标时应将 x 和 y 坐标链接到深度图像以获取以 mm 为单位的深度值。
我的想法是访问变量short depth = depthPixels[i].Depth; 在方法SensorDepthFrameReady中。但为什么它不起作用?为什么深度图像显示为灰度而不是 RGB(与 Kinect Studio 不同)?
private void SensorDepthFrameReady(object sender, DepthImageFrameReadyEventArgs e)
{
using (DepthImageFrame depthFrame = e.OpenDepthImageFrame())
{
if (depthFrame != null)
{
depthFrame.CopyDepthImagePixelDataTo(this.depthPixels);
int colorPixelDDIndex = 0;
for (int i = 0; i < this.depthPixels.Length; ++i)
{
short depth = depthPixels[i].Depth;
...
}
this.colorBitmapDD.WritePixels(new Int32Rect(0, 0, this.colorBitmapDD.PixelWidth, this.colorBitmapDD.PixelHeight),this.colorPixelsDD,this.colorBitmapDD.PixelWidth * sizeof(int),0);
}
}
}
private void imageIR_MouseClick(object sender, System.Windows.Input.MouseEventArgs e)
{
System.Windows.Point mousePoint = e.GetPosition(imageIR);
double xpos_IR = mousePoint.X;
double ypos_IR = mousePoint.Y;
lbCoord.Content = "x- & y- Koordinate [pixel]: " + xpos_IR + " ; " + ypos_IR;
zpos.Content = "z- Koordinate [mm]: " + depth;
}
有解决问题的想法吗?提前致谢。
主程序截图: