gaussian-splatting
gaussian-splatting copied to clipboard
COLMAP fails in EC2
trafficstars
python3 convert.py -s ../data/upload
E0714 12:48:36.849566 106988 option_manager.cc:923] Failed to parse options - unrecognised option '--SiftExtraction.use_gpu'.
ERROR:root:Feature extraction failed with code 256. Exiting.
Anyone has experienced this before? I could get this working before but now I am stuck with this error
Looks like an update done to COLMAP caused this issue
Change SiftExtraction in convert.py to FeatureExtraction works for me
Same holds for the exhaustive matcher: Changing SiftMatching.use_gpu to FeatureMatching.use_gpu should solve the problem.
Change
SiftExtractioninconvert.pytoFeatureExtractionworks for me
Thank you!