MichaelRamamonjisoa / SharpNet

SharpNet: Fast and Accurate Recovery of Occluding Contours in Monocular Depth Estimation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to get the real absolute depth from your model ?

LiZhenLiangLee opened this issue · comments

I found the following code in file 'demo.py'
depth_pred = depth_pred.data.cpu().numpy()[0, 0, ...] * 65535 / 1000

and I think the depth_pred is the real depth in meters, right?

You are correct! Using this denormalization, depth is expressed in meters.

You are correct! Using this denormalization, depth is expressed in meters.

ok, thanks!