From 23b411f7d381b2ceaf8db5bac3c8d5abea062171 Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Mon, 19 Jan 2026 21:10:10 +0100 Subject: [PATCH 1/2] Fix calls to colmap >= 3.13.0 --- nerfstudio/process_data/colmap_utils.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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/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"} From ce71de26d3b2e4befeaf25d0ea2d03c67e6dcc80 Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Mon, 19 Jan 2026 21:14:58 +0100 Subject: [PATCH 2/2] Bump constraints for colmap to >= 3.13.0 --- pixi.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]