1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
.. _cli:
Command-line Interface
======================
The command-line interface provides access to all of COLMAP's functionality for
automated scripting. Each core functionality is implemented as a command to the
``colmap`` executable. Run ``colmap -h`` to list the available commands (or
``COLMAP.bat -h`` under Windows). Note that if you run COLMAP from the CMake
build folder, the executable is located at ``./src/exe/colmap``. To start the
graphical user interface, run ``colmap gui``.
Example
-------
Assuming you stored the images of your project in the following structure::
/path/to/project/...
+── images
│ +── image1.jpg
│ +── image2.jpg
│ +── ...
│ +── imageN.jpg
The command for the automatic reconstruction tool would be::
# The project folder must contain a folder "images" with all the images.
$ DATASET_PATH=/path/to/project
$ colmap automatic_reconstructor \
--workspace_path $DATASET_PATH \
--image_path $DATASET_PATH/images
Note that any command lists all available options using the ``-h,--help``
command-line argument. In case you need more control over the individual
parameters of the reconstruction process, you can execute the following sequence
of commands as an alternative to the automatic reconstruction command::
# The project folder must contain a folder "images" with all the images.
$ DATASET_PATH=/path/to/dataset
$ colmap feature_extractor \
--database_path $DATASET_PATH/database.db \
--image_path $DATASET_PATH/images
$ colmap exhaustive_matcher \
--database_path $DATASET_PATH/database.db
$ mkdir $DATASET_PATH/sparse
$ colmap mapper \
--database_path $DATASET_PATH/database.db \
--image_path $DATASET_PATH/images \
--output_path $DATASET_PATH/sparse
$ mkdir $DATASET_PATH/dense
$ colmap image_undistorter \
--image_path $DATASET_PATH/images \
--input_path $DATASET_PATH/sparse/0 \
--output_path $DATASET_PATH/dense \
--output_type COLMAP \
--max_image_size 2000
$ colmap patch_match_stereo \
--workspace_path $DATASET_PATH/dense \
--workspace_format COLMAP \
--PatchMatchStereo.geom_consistency true
$ colmap stereo_fusion \
--workspace_path $DATASET_PATH/dense \
--workspace_format COLMAP \
--input_type geometric \
--output_path $DATASET_PATH/dense/fused.ply
$ colmap poisson_mesher \
--input_path $DATASET_PATH/dense/ \
--output_path $DATASET_PATH/dense/meshed-poisson.ply
$ colmap delaunay_mesher \
--input_path $DATASET_PATH/dense/fused.ply \
--output_path $DATASET_PATH/dense/meshed-delaunay.ply
If you want to run COLMAP on a computer without an attached display (e.g.,
cluster or cloud service), COLMAP automatically switches to use CUDA if
supported by your system. If no CUDA enabled device is available, you can
manually select to use CPU-based feature extraction and matching by setting the
``--SiftExtraction.use_gpu 0`` and ``--SiftMatching.use_gpu 0`` options.
Help
----
The available commands can be listed using the command::
$ colmap help
Usage:
colmap [command] [options]
Documentation:
https://colmap.github.io/
Example usage:
colmap help [ -h, --help ]
colmap gui
colmap gui -h [ --help ]
colmap automatic_reconstructor -h [ --help ]
colmap automatic_reconstructor --image_path IMAGES --workspace_path WORKSPACE
colmap feature_extractor --image_path IMAGES --database_path DATABASE
colmap exhaustive_matcher --database_path DATABASE
colmap mapper --image_path IMAGES --database_path DATABASE --output_path MODEL
...
Available commands:
help
gui
automatic_reconstructor
bundle_adjuster
color_extractor
database_creator
delaunay_mesher
exhaustive_matcher
feature_extractor
feature_importer
image_rectifier
image_registrator
image_undistorter
mapper
matches_importer
model_aligner
model_analyzer
model_converter
model_merger
model_orientation_aligner
patch_match_stereo
point_triangulator
poisson_mesher
rig_bundle_adjuster
sequential_matcher
spatial_matcher
stereo_fusion
transitive_matcher
vocab_tree_builder
vocab_tree_matcher
vocab_tree_retriever
And each command has a ``-h,--help`` command-line argument to show the usage and
the available options, e.g.::
$ colmap feature_extractor -h
Options can either be specified via command-line or by defining
them in a .ini project file passed to `--project_path`.
-h [ --help ]
--project_path arg
--database_path arg
--image_path arg
--image_list_path arg
--ImageReader.camera_model arg (=SIMPLE_RADIAL)
--ImageReader.single_camera arg (=0)
--ImageReader.camera_params arg
--ImageReader.default_focal_length_factor arg (=1.2)
--SiftExtraction.num_threads arg (=-1)
--SiftExtraction.use_gpu arg (=1)
--SiftExtraction.gpu_index arg (=-1)
--SiftExtraction.max_image_size arg (=3200)
--SiftExtraction.max_num_features arg (=8192)
--SiftExtraction.first_octave arg (=-1)
--SiftExtraction.num_octaves arg (=4)
--SiftExtraction.octave_resolution arg (=3)
--SiftExtraction.peak_threshold arg (=0.0066666666666666671)
--SiftExtraction.edge_threshold arg (=10)
--SiftExtraction.estimate_affine_shape arg (=0)
--SiftExtraction.max_num_orientations arg (=2)
--SiftExtraction.upright arg (=0)
--SiftExtraction.domain_size_pooling arg (=0)
--SiftExtraction.dsp_min_scale arg (=0.16666666666666666)
--SiftExtraction.dsp_max_scale arg (=3)
--SiftExtraction.dsp_num_scales arg (=10)
The available options can either be provided directly from the command-line or
through a `.ini` file provided to ``--project_path``.
Commands
--------
The following list briefly documents the functionality of each command, that is
available as ``colmap [command]``:
- ``gui``: The graphical user interface, see
:ref:`Graphical User Interface <gui>` for more information.
- ``automatic_reconstruction``: Automatically reconstruct sparse and dense model
for a set of input images.
- ``feature_extractor``, ``feature_importer``: Perform feature extraction or
import features for a set of images.
- ``exhaustive_matcher``, ``vocab_tree_matcher``, ``sequential_matcher``,
``spatial_matcher``, ``transitive_matcher``, ``matches_importer``:
Perform feature matching after performing feature extraction.
- ``mapper``: Sparse 3D reconstruction / mapping of the dataset using SfM after
performing feature extraction and matching.
- ``hierarchical_mapper``: Sparse 3D reconstruction / mapping of the dataset
using hierarchical SfM after performing feature extraction and matching.
This parallelizes the reconstruction process by partitioning the scene into
overlapping submodels and then reconstructing each submodel independently.
Finally, the overlapping submodels are merged into a single reconstruction.
It is recommended to run a few rounds of point triangulation and bundle
adjustment after this step.
- ``image_undistorter``: Undistort images and/or export them for MVS or to
external dense reconstruction software, such as CMVS/PMVS.
- ``image_rectifier``: Stereo rectify cameras and undistort images for stereo
disparity estimation.
- ``patch_match_stereo``: Dense 3D reconstruction / mapping using MVS after running
the ``image_undistorter`` to initialize the workspace.
- ``stereo_fusion``: Fusion of MVS depth and normal maps to a colored point cloud.
- ``poisson_mesher``: Meshing of the fused point cloud using Poisson
surface reconstruction.
- ``delaunay_mesher``: Meshing of the reconstructed sparse or dense point cloud
using a graph cut on the Delaunay triangulation and visibility voting.
- ``image_registrator``: Register new images in the database against an existing
model, e.g., when extracting features and matching newly added images in a
database after running ``mapper``. Note that no bundle adjustment or
triangulation is performed.
- ``point_triangulator``: Triangulate all observations of registered images in
an existing model using the feature matches in a database.
- ``bundle_adjuster``: Run global bundle adjustment on a reconstructed scene,
e.g., when a refinement of the intrinsics is needed or
after running the ``image_registrator``.
- ``database_creator``: Create an empty COLMAP SQLite database with the
necessary database schema information.
- ``model_analyzer``: Print statistics about reconstructions.
- ``model_aligner``: Align/geo-register model to coordinate system of given
camera centers.
- ``model_orientation_aligner``: Align the coordinate axis of a model using a
Manhattan world assumption.
- ``model_converter``: Convert the COLMAP export format to another format,
such as PLY or NVM.
- ``model_merger``: Attempt to merge two disconnected reconstructions,
if they have common registered images.
- ``color_extractor``: Extract mean colors for all 3D points of a model.
- ``vocab_tree_builder``: Create a vocabulary tree from a database with
extracted images. This is an offline procedure and can be run once, while the
same vocabulary tree can be reused for other datasets. Note that, as a rule of
thumb, you should use at least 10-100 times more features than visual words.
Pre-trained trees can be downloaded from https://demuc.de/colmap/.
This is useful if you want to build a custom tree with a different trade-off
in terms of precision/recall vs. speed.
- ``vocab_tree_retriever``: Perform vocabulary tree based image retrieval.
Visualization
-------------
If you want to quickly visualize the outputs of the sparse or dense
reconstruction pipelines, COLMAP offers you the following possibilities:
- The sparse point cloud obtained with the ``mapper`` can be visualized via the
COLMAP GUI by importing the following files: choose ``File > Import Model``
and select the folder where the three files, ``cameras.txt``,``images.txt``,
and ``points3d.txt`` are located.
- The dense point cloud obtained with the ``stereo_fusion`` can be visualized
via the COLMAP GUI by importing ``fused.ply``: choose
``File > Import Model from...`` and then select the file ``fused.ply``.
- The dense mesh model ``meshed-*.ply`` obtained with the ``poisson_mesher`` or
the ``delaunay_mesher`` can currently not be visualized with COLMAP, instead
you can use an external viewer, such as Meshlab.
|