加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
# Use Ubuntu 18.04 (will be supported until April 2023)
FROM ubuntu:bionic
# Add openMVG binaries to path
ENV PATH $PATH:/opt/openMVG_Build/install/bin
# Get dependencies
RUN apt-get update && apt-get install -y \
cmake \
build-essential \
graphviz \
git \
coinor-libclp-dev \
libceres-dev \
libflann-dev \
liblemon-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
python-minimal; \
apt-get autoclean && apt-get clean
# Clone the openvMVG repo
ADD . /opt/openMVG
RUN cd /opt/openMVG && git submodule update --init --recursive
# Build
RUN mkdir /opt/openMVG_Build; \
cd /opt/openMVG_Build; \
cmake -DCMAKE_BUILD_TYPE=RELEASE \
-DCMAKE_INSTALL_PREFIX="/opt/openMVG_Build/install" \
-DOpenMVG_BUILD_TESTS=ON \
-DOpenMVG_BUILD_EXAMPLES=OFF \
-DFLANN_INCLUDE_DIR_HINTS=/usr/include/flann \
-DLEMON_INCLUDE_DIR_HINTS=/usr/include/lemon \
-DCOINUTILS_INCLUDE_DIR_HINTS=/usr/include \
-DCLP_INCLUDE_DIR_HINTS=/usr/include \
-DOSI_INCLUDE_DIR_HINTS=/usr/include \
../openMVG/src; \
make -j 4;
RUN cd /opt/openMVG_Build && make test && make install;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化