Docker image to run Colmap (GitHub), an open source structure-from-motion toolbox.
docker run \
-it \
--rm \
--user $(id -u):$(id -g) \
--userns=host \
--net=host \
--ipc=host \
--gpus all \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix/:/tmp/.X11-unix:ro \
-v ${HOME}/.Xauthority:/home/$(whoami)/.Xauthority:ro \
-v /etc/passwd:/etc/passwd:ro \
-v /etc/group:/etc/group:ro \
martinopilia/colmap:latest
MIT