如何校准 kinect 骨架数据以传输视频?
如何校准 xna 相机投影,以便 kinect 的骨架数据点在叠加时与视频源对齐?
How do I calibrate an xna camera projection so that kinect's skeleton data points line up with the video feed when overlayed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在 WPF 中完成了此操作,我认为它与 XNA 相同。
这是我使用的代码,我相信它取自 SDK 文档中的示例 Kinect 项目之一。您的结果可能会有所不同。请注意,320x240 部分似乎与您使用的实际分辨率无关。我将深度流设置为 640x480,将 RGB 流设置为 1280x1024。
nui 是我的运行时对象。
I've done this in WPF, I assume it will be the same with XNA..
This is the code I used, which I believe was taken from one of the sample Kinect projects in the SDK's documentation. Your results may vary. Note that the 320x240 part seems to have nothing to do with the actual resolution you're using.. I had the depth stream set to 640x480 and the RGB stream set to 1280x1024.
nui is my Runtime object.