lpiccinelli-eth / UniDepth

Universal Monocular Metric Depth Estimation
Other
462 stars 39 forks source link

visualization que #16

Closed vehxianfish closed 2 months ago

vehxianfish commented 2 months ago

Hi, @lpiccinelli-eth, thanks for your wonderful open-source work! I want to reproduce your nuscenes visualization result. The raw image is as bellows: image

The predicted pointcloud is as bellows:

image

There are two questions:

  1. the right building is far away
  2. the sky height is not high enough.

So, does above phenomenon is normal? thanks for your help. best regards!

lpiccinelli-eth commented 2 months ago

Thank you for your appreciation!

The sky is a typical artifact due to the model never seeing ground truth for the sky (LiDAR GT is always "invalid" for sky region) and the model "lazily" converges to small values of depth in those regions, thus small height, too. However, our v2 (#15) will solve this problem.

On the other hand, the building is an artifact of the model which incorrectly predicts its depth as too far.

vehxianfish commented 2 months ago

Thanks!