We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为什么读取的深度要除以256呢,因为后面的代码中: roi_depth_ind = (roi_depth > depth[i] - 3) & (roi_depth < depth[i] + 3) & (roi_depth > 0) depth[i]是一个绝对深度 roi_depth是由深度图d变换而来,他应该代表一个绝对深度,但是d已经除以256了 他似乎并不能代表绝对深度
The text was updated successfully, but these errors were encountered:
深度图保存时是灰度图,为了精度是先乘256再存成uint16。code里面opencv读取灰度图的那种方式是需要除以256.来获取真实的深度的
Sorry, something went wrong.
No branches or pull requests
为什么读取的深度要除以256呢,因为后面的代码中:
roi_depth_ind = (roi_depth > depth[i] - 3) &
(roi_depth < depth[i] + 3) &
(roi_depth > 0)
depth[i]是一个绝对深度 roi_depth是由深度图d变换而来,他应该代表一个绝对深度,但是d已经除以256了 他似乎并不能代表绝对深度
The text was updated successfully, but these errors were encountered: