Jianxff / droid_metric

run DROID-SLAM with Metric3D to improve monocular performance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doubt on parameters

gmberton opened this issue · comments

Hi, thank you for the cool repo, I found it really nice and easy to use :)

I see that the depth.py take as input --images while run.py and mesh.py take --rgb.
Is it supposed to be the same parameter / same path?

Also, the code doesn't work with the latest version of matplotlib (3.9), perhaps it would be better to set matplotlib<=3.8 in the requirements.txt.
With matplotlib 3.9 I get this error
AttributeError: module 'matplotlib.cm' has no attribute 'get_cmap'

THANKS for your feedback!
Parameter image and rgb means the same path to the folder of RGB images, I will make it more clear soon.
The function get_cmap is for visualization of depth map, which is unnecessary, you can annotate it.

Thank you for your quick reply!