NVlabs / neuralangelo

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

key error while running `convert_tnt_to_json.py` for the tanks dataset. #152

Open dhruvmalik007 opened 9 months ago

dhruvmalik007 commented 9 months ago

About:

I am running the tutorial of the neuralangelo for the tanks_and_templates dataset , and I run the command :

python3 ./projects/neuralangelo/scripts/convert_tnt_to_json.py --tnt_path ${1}

with the correct path of the given tanks_and_temples dataset . but after the image sampling step, I see that in the function def create_init_files() at line 67/68

    for row in table_images:
        img_name2id_dict[row[1]] = row[0]

gives Key_error: '000411.jpg'

I even seen that the database.db after the colmap feature_extractor was successful with all the listed raw_images . do I needed to understand what should be the changes needed in order to resolve this issue . thanks