output_path:pathlib.Pathimage_dir:pathlib.Pathoutput_path.mkdir()mvs_path=output_path/"mvs"database_path=output_path/"database.db"pycolmap.extract_features(database_path,image_dir)pycolmap.match_exhaustive(database_path)maps=pycolmap.incremental_mapping(database_path,image_dir,output_path)maps[...
extract_features(database_path, image_dir) matching_opt= pycolmap.VocabTreeMatchingOptions( vocab_tree_path='vocab_tree_flickr100K_words32K.bin') pycolmap.match_vocabtree(database_path, matching_options=matching_opt) When I run it not in notebook, I get the following crash message: === ...
Exhaustive feature matching Matching block [1/1, 1/1] in 0.000s Elapsed time: 0.003 [minutes] i also got a database.db which is not empty(1837K),but got error in the next stepContributor tsattler commented Jan 4, 2022 It seems that your database only contains a single image. A si...
output_path:pathlib.Pathimage_dir:pathlib.Pathoutput_path.mkdir()mvs_path=output_path/"mvs"database_path=output_path/"database.db"pycolmap.extract_features(database_path,image_dir)pycolmap.match_exhaustive(database_path)maps=pycolmap.incremental_mapping(database_path,image_dir,output_path)maps[...
output_path:pathlib.Pathimage_dir:pathlib.Pathoutput_path.mkdir()mvs_path=output_path/"mvs"database_path=output_path/"database.db"pycolmap.extract_features(database_path,image_dir)pycolmap.match_exhaustive(database_path)maps=pycolmap.incremental_mapping(database_path,image_dir,output_path)maps[...