-
Hello INGP developers and INGP community! First of all, I would like to thank you for sharing the code. May I ask you, is it possible to obtain real depth values (in mm) from raw depths? From previous issues and discussions I understand, that raw depth values are expressed in scene units. But what is transformation between scene and real coordinates? I tried to multiply raw depth values by a factor of scene_scale = 0.33 (I also tried 1/0.33), but it seems to be wrong. Should I use aabb_scale parameter to obtain real depth values? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi there, |
Beta Was this translation helpful? Give feedback.
Hi there,
aabb_scale
does not influence the depth values.You want to divide byNERF_SCALE
, which will then return depth values in the units that your transforms were in.testbed.render()
already returns depth values in the units that your transforms were in. At that point, obtaining millimeters is a question of understanding where the transforms came from -- in the case of colmap, the scale is arbitrary if the cameras weren't calibrated beforehand.