【发布时间】:2015-01-08 13:15:55
【问题描述】:
我想从 kinect 深度数据中移除背景。我怎样才能做到这一点。另一种方法可以改变kinect max。遥远的范围。有什么建议吗?
谢谢
【问题讨论】:
标签: background kinect depth
我想从 kinect 深度数据中移除背景。我怎样才能做到这一点。另一种方法可以改变kinect max。遥远的范围。有什么建议吗?
谢谢
【问题讨论】:
标签: background kinect depth
使用此功能:
HRESULT NuiFusionDepthToDepthFloatFrame(
const UINT16* pDepthImageData,
UINT depthImageDataWidth, UINT depthImageDataHeight,
const NUI_FUSION_IMAGE_FRAME *pDepthFloatFrame,
FLOAT minDepthClip, FLOAT maxDepthClip, BOOL mirrorDepth)
minDepthClip 和maxDepthClip 可以帮助你摆脱你不想要的东西的深度。此功能还将深度数据从unsigned short 更改为float,从mm 更改为meter。
【讨论】: