本文介绍了CoordinateMapper MapColorFrameToDepthSpace和MapColorFrameToCameraSpace方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

方法名称暗示我们会在(字节)中传递颜色数据,但是入站参数被声明为深度数据(ushort)。

The method names imply we would pass color data in (byte), but the inbound parameters are declared as depth data (ushort).

有没有办法获得如果计划更改,有关这些方法和状态的说明是什么?

Is there a way to get a clarification about the these methods and status if changes are planned?

推荐答案

对于深度帧,这是投影到传感器平面上的3D世界空间。坐标映射器基础示例提供了有关如何在自己的应用程序中使用查找表的代码。

As for the depth frame, this is the 3D world space projected onto a plane of the sensor. The coordinate mapper basics sample provides code on how you can use the lookup table within your own application.


这篇关于CoordinateMapper MapColorFrameToDepthSpace和MapColorFrameToCameraSpace方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 09:09