You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
hello, I followed the tutorial and try to obtain a *.log file from colmap result by runing the python script: python convert_to_logfile.py Ignatius_COLMAP/sparse/0/ cameras.log Ignatius_COLMAP COLMAP jpg
but there is a error: Traceback (most recent call last): File "convert_to_logfile.py", line 48, in <module> import read_model ModuleNotFoundError: No module named 'read_model'
and I don't know where to find the module read_model, can you help me? thank you very much
The text was updated successfully, but these errors were encountered:
Hey! Most likely I'm here too late helping you with the question but still. The module is now called "read_write_module.py", so you should change import read_model
to import read_write_model
as well as changing mentions of this module throughout the code.
hello, I followed the tutorial and try to obtain a *.log file from colmap result by runing the python script:
python convert_to_logfile.py Ignatius_COLMAP/sparse/0/ cameras.log Ignatius_COLMAP COLMAP jpg
but there is a error:
Traceback (most recent call last): File "convert_to_logfile.py", line 48, in <module> import read_model ModuleNotFoundError: No module named 'read_model'
and I don't know where to find the module read_model, can you help me? thank you very much
The text was updated successfully, but these errors were encountered: