NVlabs / neuralangelo

Official implementation of "Neuralangelo: High-Fidelity Neural Surface Reconstruction" (CVPR 2023)
https://research.nvidia.com/labs/dir/neuralangelo/
Other
4.38k stars 388 forks source link

Poor results on DTU after pulling recent commits. #101

Closed HLinChen closed 1 year ago

HLinChen commented 1 year ago

I have trained on DTU before and the results look good. However, after git pull recent commits, I train on DTU again and the results are poor. Can you help me find the problems?

image image
mli0603 commented 1 year ago

Hi @HLinChen

Thanks for reporting! Can you point me to which commit you are on?

HLinChen commented 1 year ago

Hi @mli0603

Thanks for your reply. The commit ID is b772282d26f62064401b1f4f0d53eefe908afdb3.

And I also git clone the newest codes. And there is still this problem.

mli0603 commented 1 year ago

Hi @HLinChen

Can you try the following? We have recently updated the data loading script and thus the transforms.json needs to be updated.

PATH_TO_DTU=datasets/dtu  # Modify this to be the DTU dataset root directory.
python3 projects/neuralangelo/scripts/convert_dtu_to_json.py --dtu_path ${PATH_TO_DTU}
HLinChen commented 1 year ago

Thank you very much! The problem has been solved.