问题描述
感谢您的帮助。我正在研究我的第一个Kinect项目,我正在寻找导出3D深度数据的最佳方法,以供另一方想要分析图像深度的人进行评估。
Thanks for the help. I am working on my first Kinect project and am looking for the best way to export 3D depth data for evaluation by another party who wants to analyze the depth of an image.
我假设我可以使用Depth WPF示例并导出png。但是,当我认为全深度信息应该是16位时,它输出的png只有8位?
//深度帧数据是16位值
          ushort * frameData =(ushort *)depthFrameData;
// depth frame data is a 16 bit value
ushort* frameData = (ushort*)depthFrameData;
如何修改项目以导出完整的16位深度图像?
How do I modify the project to export full 16bit depth images?
当我刚刚更改此行时:
When I just change this line:
//创建要显示的位图
          this.depthBitmap = new WriteableBitmap(this.depthFrameDescription.Width,this.depthFrameDescription.Height,96.0,96.0,PixelFormats.Gray8,null);
// create the bitmap to display
this.depthBitmap = new WriteableBitmap(this.depthFrameDescription.Width, this.depthFrameDescription.Height, 96.0, 96.0, PixelFormats.Gray8, null);
到Gray16,构建立即退出
To Gray16, the build quits right away
推荐答案
这篇关于将Kinect深度数据导出到文本文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!