diff --git a/nerfstudio/process_data/colmap_utils.py b/nerfstudio/process_data/colmap_utils.py index 1d9405c81a..da9c46d698 100644 --- a/nerfstudio/process_data/colmap_utils.py +++ b/nerfstudio/process_data/colmap_utils.py @@ -126,7 +126,7 @@ def run_colmap( f"--image_path {image_dir}", "--ImageReader.single_camera 1", f"--ImageReader.camera_model {camera_model.value}", - f"--SiftExtraction.use_gpu {int(gpu)}", + f"--FeatureExtraction.use_gpu {int(gpu)}", ] if camera_mask_path is not None: feature_extractor_cmd.append(f"--ImageReader.camera_mask_path {camera_mask_path}") @@ -140,7 +140,7 @@ def run_colmap( feature_matcher_cmd = [ f"{colmap_cmd} {matching_method}_matcher", f"--database_path {colmap_dir / 'database.db'}", - f"--SiftMatching.use_gpu {int(gpu)}", + f"--FeatureMatching.use_gpu {int(gpu)}", ] if matching_method == "vocab_tree": vocab_tree_filename = get_vocab_tree() diff --git a/pixi.toml b/pixi.toml index 710ebc2189..9c57404d87 100644 --- a/pixi.toml +++ b/pixi.toml @@ -28,7 +28,7 @@ pytorch-cuda = {version = "11.8.*", channel="pytorch"} pytorch = {version = ">=2.2.0,<2.3", channel="pytorch"} torchvision = {version = ">=0.17.0,<0.18", channel="pytorch"} pyarrow = ">=15.0.2,<15.1" -colmap = ">=3.9.1,<3.10" +colmap = ">=3.13.0" [pypi-dependencies] diff --git a/pyproject.toml b/pyproject.toml index 585eee4f9c..c36b9865f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nerfstudio" -version = "1.1.5" +version = "1.1.6" description = "All-in-one repository for state-of-the-art NeRFs" readme = "README.md" license = { text="Apache 2.0"}