We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50e0e3c commit 840980dCopy full SHA for 840980d
1 file changed
nerfstudio/process_data/colmap_utils.py
@@ -126,7 +126,7 @@ def run_colmap(
126
f"--image_path {image_dir}",
127
"--ImageReader.single_camera 1",
128
f"--ImageReader.camera_model {camera_model.value}",
129
- f"--SiftExtraction.use_gpu {int(gpu)}",
+ f"--FeatureExtraction.use_gpu {int(gpu)}",
130
]
131
if camera_mask_path is not None:
132
feature_extractor_cmd.append(f"--ImageReader.camera_mask_path {camera_mask_path}")
@@ -140,7 +140,7 @@ def run_colmap(
140
feature_matcher_cmd = [
141
f"{colmap_cmd} {matching_method}_matcher",
142
f"--database_path {colmap_dir / 'database.db'}",
143
- f"--SiftMatching.use_gpu {int(gpu)}",
+ f"--FeatureMatching.use_gpu {int(gpu)}",
144
145
if matching_method == "vocab_tree":
146
vocab_tree_filename = get_vocab_tree()
0 commit comments