服务器安装 colmap

Installation — COLMAP 3.7 documentation

按照里面的源码安装尽量安完 apt-get

准备 eigen

eigen>3.3 ,不然会报错

从这里下载 eigen 3.3.4

Eigen

Releases · libeigen / eigen · GitLab

放在 home 然后 cmake, make, install 即可

cmake ..  -DCMAKE_INSTALL_PREFIX=../install/

准备ceres,

googlesource的打不开,用了github上面的, 或者 

git clone https://gitee.com/coolke/ceres-solver.git

然后cmake  make 即可,它可以自己找到 eigen344

注意

由于对gflags版本有要求,git clone,然后cmake, build

在 ceres的 cmakelists中 

SET(gflags_DIR "/home/shilinzhe/gflags_stable/build")

cmake 时候指定非sudo安装目录

cmake .. -DBUILD_TESTING=OFF -DBUILD_EXAMPLES=OFF -DCMAKE_INSTALL_PREFIX=../install/

make  然后 make install

只有经过make install , CeresConfig.cmake这个文件才出现被找到

Installing: /home/shilinzhe/ceres-solver/install/lib/cmake/Ceres/CeresConfig.cmake


 

准备colmap

cmake时候需要额外设置,ceres在哪,安装在哪

设置如下,不设前两个会报错,这就是不用root安装的麻烦之处。。。

# slz
SET(gflags_DIR "/home/shilinzhe/gflags_stable/build")
SET(Ceres_DIR "/home/shilinzhe/ceres-solver/install/lib/cmake/Ceres")
# SET(Eigen3_DIR "/home/shilinzhe/eigen-3.3.4/build")

有问题:多了一个空格编译的东西完全不一样

cmake .. -DCMAKE_PREFIX_PATH= /home/shilinzhe/ceres-solver/ -DCMAKE_INSTALL_PREFIX ../install/

通过增加 message("finding ......!!!!!!!!!!!!!!!!!!!!") ,检查出上面的命令执行的不是当前路径的cmakelists

去掉空格

cmake .. -DCMAKE_PREFIX_PATH=/home/shilinzhe/ceres-solver/ -DCMAKE_INSTALL_PREFIX ../install/

在/colmap/cmake/FindEigen3.cmake中添加:设置需要的eigen334的路径,防止错误find,导致make过程没有用到对的eigen 版本(/usr/local下的旧版本),出现错误

SET(EIGEN3_INCLUDE_DIRS  "/home/shilinzhe/eigen-3.3.4/install/include/eigen3")

 cmake .. -DCMAKE_INSTALL_PREFIX=../install/

然后

make DESTDIR= install -j4

结束

中间的问题解决过程

安装后没找到/src/exe/colmap 可执行文件

重新cmake时候发现问题:

Use of gflags disabled - no tests or tools will be built!

CMake Warning at CMakeLists.txt:392 (find_package):
  By not providing "Findgflags.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "gflags", but
  CMake did not find one.

  Could not find a package configuration file provided by "gflags" (requested
  version 2.2.0) with any of the following names:

    gflagsConfig.cmake
    gflags-config.cmake

  Add the installation prefix of "gflags" to CMAKE_PREFIX_PATH or set
  "gflags_DIR" to a directory containing one of the above files.  If "gflags"
  provides a separate development package or SDK, be sure it has been
  installed.


-- Did not find Google Flags (gflags), Building without gflags.
-- Use of gflags disabled - no tests or tools will be built!
-- No preference for use of exported glog CMake configuration set, and no hints for include/library directories provided. Defaulting to preferring an installed/exported glog CMake configuration if available.
-- Failed to find installed glog CMake configuration, searching for glog build directories exported with CMake.
-- Failed to find an installed/exported CMake configuration for glog, will perform search for installed glog components.
Found Glog: /usr/include  
-- Found Google Log (glog). Assuming glog was NOT built with gflags support as gflags was not found.  If glog was built with gflags, please set the gflags search locations such that it can be found by Ceres.  Otherwise, Ceres may fail to link due to missing gflags symbols.

下载 编译 gflags

git clone https://github.com/gflags/gflags.git gflags_stable

在ceres的 cmakelists.txt的 增加

SET(gflags_DIR "/home/shilinzhe/gflags_stable/build")

然后

cmake .. -DBUILD_TESTING=OFF -DBUILD_EXAMPLES=OFF

可以得到

Found Google Flags (gflags) version 2.2.2: /home/shilinzhe/gflags_stable/build
然后make ceres 和colmap即可

localize要用到 pycolmap

安装 pycolmap

因为 只有python3.7以上 支持 pip install pycolmap 

所以只能源码安装:

cd  /Hierarchical-Localization/pycolmap

pip install ./

但是

发现pycolmap的cmakelists指向问题,colmapconfig.cmake 中的 各种库 ceres  freeimage glew glog 找不到(都是在/usr中的库,可能因为 conda 启动pip的原因 使用的cmake 没有在 全局寻找,索性直接set路径, 或者在cmake module path中增加路径)

set了 /colmap/build/COLMAPConfig.cmake中的很多路径

find_package(Boost COMPONENTS
                program_options
                filesystem
                system
                unit_test_framework
                REQUIRED)
    #find_package(FreeImage REQUIRED)
    #find_package(Glog REQUIRED)
    find_package(OpenGL REQUIRED)
    # find_package(Glew REQUIRED)
    #find_package(Eigen3 REQUIRED)
    find_package(Ceres REQUIRED)
    find_package(Qt5 5.4 REQUIRED COMPONENTS Core OpenGL Widgets)
endif()

# slz
set(FREEIMAGE_INCLUDE_DIRS "/usr/include")
set(FREEIMAGE_LIBRARIES "/usr/lib/x86_64-linux-gnu/libfreeimage.so")

set(GLOG_INCLUDE_DIRS "/usr/include")
set(GLOG_LIBRARIES "/usr/lib/x86_64-linux-gnu/libfreeimage.so")

SET(EIGEN3_INCLUDE_DIRS  "/home/shilinzhe/eigen-3.3.4/install/include/eigen3")

set(GLEW_LIBRARIES "/usr/include")
set(GLEW_INCLUDE_DIRS "/usr/lib/x86_64-linux-gnu/libGLEW.so")

然后这个error解决,但出现:

/tmp/pip-req-build-4l65u2l7/absolute_pose.cc:35:32: fatal error: colmap/base/camera.h: No such file or directory 

应该意思是找库时候出现问题,那么它找的应该是 install 的库,肯定不在 colmap的源代码里找

所以在install 文件夹意外发现了所有库文件,以及正确的.cmake文件

原来在pycolmap的 cmakelists中

set(COLMAP_DIR "/home/shilinzhe/colmap/build/") 
#其中的COLMAPConfig.cmake

应该改为

set(COLMAP_DIR "/home/shilinzhe/colmap/install/share/colmap/")
# 其中的COLMAPConfig.cmake

并且由于报错  COLMAPConfig.cmake增加

SET(Ceres_DIR "/home/shilinzhe/ceres-solver/install/lib/cmake/Ceres")

只需要找对这个.cmake文件 然后 pip即可成功

ref

服务器安装colmap简要记录_nbl97-CSDN博客

在Ubuntu Docker中安装Colmap - 知乎

Linux服务器无root权限安装colmap_呵呵咕的博客-CSDN博客

正确解决libstdc++.so.6: version `GLIBCXX_3.4.22' - 知乎

Libstdc++.so.6: version `GLIBCXX_3.4.22’ not found(conda)_风中落泪的花-CSDN博客

附录

colmap  make 过程

-- Found required Ceres dependency: Eigen version 3.3.4 in /home/include/eigen3
-- Found required Ceres dependency: glog
-- Found required Ceres dependency: gflags
-- Found Ceres version: 2.0.0 installed in: /home/shilinzhe/ceres-solver/install with components: [EigenSparse, SparseLinearAlgebraLibrary, LAPACK, SuiteSparse, CXSparse, SchurSpecializations, Multithreading]
-- Found Eigen
--   Includes : /home/shilinzhe/eigen-3.3.4/install/include/eigen3
-- Found FreeImage
--   Includes : /usr/include
--   Libraries : /usr/lib/x86_64-linux-gnu/libfreeimage.so
-- Found Glog
--   Includes : /usr/include
--   Libraries : /usr/lib/x86_64-linux-gnu/libglog.so
-- Found Glew
--   Includes : /usr/include
--   Libraries : /usr/lib/x86_64-linux-gnu/libGLEW.so
-- Found Qt
--   Module : /usr/lib/x86_64-linux-gnu/cmake/Qt5Core
--   Module : /usr/lib/x86_64-linux-gnu/cmake/Qt5OpenGL
--   Module : /usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets
-- Found CGAL
--   Includes : /usr/include
--   Libraries : /usr/lib/x86_64-linux-gnu/libCGAL.so.11.0.1
-- Build type not specified, using Release
-- Enabling SIMD support
-- Enabling OpenMP support
-- Disabling interprocedural optimization
-- Autodetected CUDA architecture(s):  7.5 7.5 7.5 7.5 7.5 7.5
-- Enabling CUDA support (version: 10.1, archs: sm_75)
-- Enabling GUI support
-- Enabling OpenGL support
-- Disabling profiling support
-- Enabling CGAL support
-- Configuring done
-- Generating done
-- Build files have been written to: /home/shilinzhe/colmap/build
Scanning dependencies of target flann
Scanning dependencies of target graclus
[  0%] Building NVCC (Device) object lib/PBA/CMakeFiles/pba.dir/pba_generated_ProgramCU.cu.o
Scanning dependencies of target lsd
[  2%] Building C object lib/LSD/CMakeFiles/lsd.dir/lsd.c.o
[  2%] Building CXX object lib/FLANN/CMakeFiles/flann.dir/flann.cpp.o
[  4%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/balance.c.o
[  4%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/bucketsort.c.o
[  4%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/ccgraph.c.o
[  4%] Linking C static library liblsd.a
[  4%] Built target lsd
Scanning dependencies of target poisson_recon
[  4%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/CmdLineParser.cpp.o
[  4%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/coarsen.c.o
[  4%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/compress.c.o
[  4%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/Factor.cpp.o
[  6%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/debug.c.o
[  8%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/Geometry.cpp.o
[  8%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/estmem.c.o
[  8%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/fm.c.o
[  8%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/MarchingCubes.cpp.o
[  8%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/fortran.c.o
[  8%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/frename.c.o
[ 10%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/graph.c.o
[ 10%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/PlyFile.cpp.o
[ 10%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/initpart.c.o
[ 10%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/kmetis.c.o
[ 10%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/kvmetis.c.o
[ 10%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/kwayfm.c.o
[ 10%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/PoissonRecon.cpp.o
[ 12%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/kwayrefine.c.o
[ 12%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/kwayvolfm.c.o
[ 12%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/kwayvolrefine.c.o
[ 12%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/match.c.o
[ 12%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mbalance.c.o
[ 14%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mbalance2.c.o
[ 14%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mcoarsen.c.o
[ 14%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/memory.c.o
[ 14%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mesh.c.o
Scanning dependencies of target pba
[ 14%] Building CXX object lib/PBA/CMakeFiles/pba.dir/ConfigBA.cpp.o
[ 14%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/meshpart.c.o
[ 16%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/metis.c.o
[ 16%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mfm.c.o
[ 16%] Building CXX object lib/PBA/CMakeFiles/pba.dir/CuTexImage.cpp.o
[ 16%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mfm2.c.o
[ 16%] Building CXX object lib/PBA/CMakeFiles/pba.dir/pba.cpp.o
[ 18%] Building CXX object lib/PBA/CMakeFiles/pba.dir/SparseBundleCPU.cpp.o
[ 18%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mincover.c.o
[ 18%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/minitpart.c.o
[ 18%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/minitpart2.c.o
[ 20%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mkmetis.c.o
[ 20%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mkwayfmh.c.o
[ 20%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mkwayrefine.c.o
[ 20%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mmatch.c.o
[ 20%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mmd.c.o
[ 22%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mpmetis.c.o
[ 22%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mrefine.c.o
[ 22%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mrefine2.c.o
[ 22%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/mutil.c.o
[ 22%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/myqsort.c.o
[ 24%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/ometis.c.o
[ 24%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/parmetis.c.o
[ 24%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/pmetis.c.o
[ 24%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/pqueue.c.o
[ 24%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/refine.c.o
[ 26%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/separator.c.o
[ 26%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/sfm.c.o
[ 26%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/srefine.c.o
[ 26%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/stat.c.o
[ 26%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/subdomains.c.o
[ 28%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/timing.c.o
[ 28%] Building C object lib/Graclus/CMakeFiles/graclus.dir/metisLib/util.c.o
[ 28%] Building C object lib/Graclus/CMakeFiles/graclus.dir/multilevelLib/wkkm.c.o
[ 28%] Building CXX object lib/PBA/CMakeFiles/pba.dir/SparseBundleCU.cpp.o
[ 28%] Building C object lib/Graclus/CMakeFiles/graclus.dir/multilevelLib/mlkkm.c.o
[ 28%] Linking C static library libgraclus.a
[ 28%] Built target graclus
[ 28%] Building NVCC (Device) object lib/SiftGPU/CMakeFiles/sift_gpu.dir/sift_gpu_generated_ProgramCU.cu.o
[ 28%] Linking CXX static library libpba.a
[ 28%] Built target pba
[ 28%] Building CXX object lib/PoissonRecon/CMakeFiles/poisson_recon.dir/SurfaceTrimmer.cpp.o
Scanning dependencies of target sqlite3
[ 30%] Building C object lib/SQLite/CMakeFiles/sqlite3.dir/sqlite3.c.o
Scanning dependencies of target sift_gpu
[ 30%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/FrameBufferObject.cpp.o
[ 30%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/GlobalUtil.cpp.o
[ 30%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/GLTexImage.cpp.o
[ 32%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/ProgramGLSL.cpp.o
[ 32%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/PyramidGL.cpp.o
[ 32%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/ShaderMan.cpp.o
[ 32%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/SiftGPU.cpp.o
[ 32%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/SiftMatch.cpp.o
[ 34%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/SiftPyramid.cpp.o
[ 34%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/CuTexImage.cpp.o
[ 34%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/PyramidCU.cpp.o
[ 34%] Building CXX object lib/SiftGPU/CMakeFiles/sift_gpu.dir/SiftMatchCU.cpp.o
[ 34%] Linking CXX static library libsift_gpu.a
[ 34%] Built target sift_gpu
[ 34%] Building C object lib/FLANN/CMakeFiles/flann.dir/ext/lz4.c.o
[ 34%] Building C object lib/FLANN/CMakeFiles/flann.dir/ext/lz4hc.c.o
Scanning dependencies of target vlfeat
[ 34%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/aib.c.o
[ 34%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/array.c.o
[ 34%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/covdet.c.o
[ 34%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/dsift.c.o
[ 36%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/fisher.c.o
[ 36%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/generic.c.o
[ 36%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/getopt_long.c.o
[ 36%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/gmm.c.o
[ 36%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/hikmeans.c.o
[ 38%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/hog.c.o
[ 38%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/homkermap.c.o
[ 38%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/host.c.o
[ 38%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/ikmeans.c.o
[ 38%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/imopv.c.o
[ 40%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/kdtree.c.o
[ 40%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/kmeans.c.o
[ 40%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/lbp.c.o
[ 40%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/liop.c.o
[ 40%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/mathop.c.o
[ 42%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/mser.c.o
[ 42%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/pgm.c.o
[ 42%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/quickshift.c.o
[ 42%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/random.c.o
[ 42%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/rodrigues.c.o
[ 44%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/scalespace.c.o
[ 44%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/sift.c.o
[ 44%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/slic.c.o
[ 44%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/stringop.c.o
[ 44%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/svm.c.o
[ 46%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/svmdataset.c.o
[ 46%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/vlad.c.o
[ 46%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/mathop_avx.c.o
[ 46%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/imopv_sse2.c.o
[ 46%] Building C object lib/VLFeat/CMakeFiles/vlfeat.dir/mathop_sse2.c.o
[ 48%] Linking C static library libvlfeat.a
[ 48%] Built target vlfeat
[ 48%] Linking C static library libsqlite3.a
[ 48%] Built target sqlite3
[ 50%] Linking CXX static library libpoisson_recon.a
[ 50%] Built target poisson_recon
[ 50%] Linking CXX static library libflann.a
[ 50%] Built target flann
[ 50%] Automatic RCC for ui/resources.qrc
Scanning dependencies of target colmap
[ 50%] Building CXX object src/CMakeFiles/colmap.dir/base/camera_database.cc.o
[ 50%] Building CXX object src/CMakeFiles/colmap.dir/base/camera.cc.o
[ 50%] Building CXX object src/CMakeFiles/colmap.dir/base/camera_models.cc.o
[ 50%] Building CXX object src/CMakeFiles/colmap.dir/base/camera_rig.cc.o
[ 52%] Building CXX object src/CMakeFiles/colmap.dir/base/correspondence_graph.cc.o
[ 52%] Building CXX object src/CMakeFiles/colmap.dir/base/database.cc.o
[ 52%] Building CXX object src/CMakeFiles/colmap.dir/base/database_cache.cc.o
[ 52%] Building CXX object src/CMakeFiles/colmap.dir/base/essential_matrix.cc.o
[ 52%] Building CXX object src/CMakeFiles/colmap.dir/base/gps.cc.o
[ 54%] Building CXX object src/CMakeFiles/colmap.dir/base/graph_cut.cc.o
[ 54%] Building CXX object src/CMakeFiles/colmap.dir/base/homography_matrix.cc.o
[ 54%] Building CXX object src/CMakeFiles/colmap.dir/base/image.cc.o
[ 54%] Building CXX object src/CMakeFiles/colmap.dir/base/image_reader.cc.o
[ 54%] Building CXX object src/CMakeFiles/colmap.dir/base/line.cc.o
[ 56%] Building CXX object src/CMakeFiles/colmap.dir/base/point2d.cc.o
[ 56%] Building CXX object src/CMakeFiles/colmap.dir/base/point3d.cc.o
[ 56%] Building CXX object src/CMakeFiles/colmap.dir/base/polynomial.cc.o
[ 56%] Building CXX object src/CMakeFiles/colmap.dir/base/pose.cc.o
[ 56%] Building CXX object src/CMakeFiles/colmap.dir/base/projection.cc.o
[ 58%] Building CXX object src/CMakeFiles/colmap.dir/base/reconstruction.cc.o
[ 58%] Building CXX object src/CMakeFiles/colmap.dir/base/reconstruction_manager.cc.o
[ 58%] Building CXX object src/CMakeFiles/colmap.dir/base/scene_clustering.cc.o
[ 58%] Building CXX object src/CMakeFiles/colmap.dir/base/similarity_transform.cc.o
[ 58%] Building CXX object src/CMakeFiles/colmap.dir/base/track.cc.o
[ 60%] Building CXX object src/CMakeFiles/colmap.dir/base/triangulation.cc.o
[ 60%] Building CXX object src/CMakeFiles/colmap.dir/base/undistortion.cc.o
[ 60%] Building CXX object src/CMakeFiles/colmap.dir/base/visibility_pyramid.cc.o
[ 60%] Building CXX object src/CMakeFiles/colmap.dir/base/warp.cc.o
[ 60%] Building CXX object src/CMakeFiles/colmap.dir/controllers/automatic_reconstruction.cc.o
[ 62%] Building CXX object src/CMakeFiles/colmap.dir/controllers/bundle_adjustment.cc.o
[ 62%] Building CXX object src/CMakeFiles/colmap.dir/controllers/hierarchical_mapper.cc.o
[ 62%] Building CXX object src/CMakeFiles/colmap.dir/controllers/incremental_mapper.cc.o
[ 62%] Building CXX object src/CMakeFiles/colmap.dir/estimators/absolute_pose.cc.o
[ 62%] Building CXX object src/CMakeFiles/colmap.dir/estimators/affine_transform.cc.o
[ 62%] Building CXX object src/CMakeFiles/colmap.dir/estimators/coordinate_frame.cc.o
[ 64%] Building CXX object src/CMakeFiles/colmap.dir/estimators/essential_matrix.cc.o
[ 64%] Building CXX object src/CMakeFiles/colmap.dir/estimators/fundamental_matrix.cc.o
[ 64%] Building CXX object src/CMakeFiles/colmap.dir/estimators/generalized_absolute_pose.cc.o
[ 64%] Building CXX object src/CMakeFiles/colmap.dir/estimators/generalized_absolute_pose_coeffs.cc.o
[ 64%] Building CXX object src/CMakeFiles/colmap.dir/estimators/generalized_relative_pose.cc.o
[ 66%] Building CXX object src/CMakeFiles/colmap.dir/estimators/homography_matrix.cc.o
[ 66%] Building CXX object src/CMakeFiles/colmap.dir/estimators/pose.cc.o
[ 66%] Building CXX object src/CMakeFiles/colmap.dir/estimators/triangulation.cc.o
[ 66%] Building CXX object src/CMakeFiles/colmap.dir/estimators/two_view_geometry.cc.o
[ 66%] Building CXX object src/CMakeFiles/colmap.dir/estimators/utils.cc.o
[ 68%] Building CXX object src/CMakeFiles/colmap.dir/feature/extraction.cc.o
[ 68%] Building CXX object src/CMakeFiles/colmap.dir/feature/matching.cc.o
[ 68%] Building CXX object src/CMakeFiles/colmap.dir/feature/sift.cc.o
[ 68%] Building CXX object src/CMakeFiles/colmap.dir/feature/types.cc.o
[ 68%] Building CXX object src/CMakeFiles/colmap.dir/feature/utils.cc.o
[ 70%] Building CXX object src/CMakeFiles/colmap.dir/mvs/consistency_graph.cc.o
[ 70%] Building CXX object src/CMakeFiles/colmap.dir/mvs/depth_map.cc.o
[ 70%] Building CXX object src/CMakeFiles/colmap.dir/mvs/fusion.cc.o
[ 70%] Building CXX object src/CMakeFiles/colmap.dir/mvs/image.cc.o
[ 70%] Building CXX object src/CMakeFiles/colmap.dir/mvs/meshing.cc.o
[ 72%] Building CXX object src/CMakeFiles/colmap.dir/mvs/model.cc.o
[ 72%] Building CXX object src/CMakeFiles/colmap.dir/mvs/normal_map.cc.o
[ 72%] Building CXX object src/CMakeFiles/colmap.dir/mvs/workspace.cc.o
[ 72%] Building CXX object src/CMakeFiles/colmap.dir/optim/bundle_adjustment.cc.o
[ 72%] Building CXX object src/CMakeFiles/colmap.dir/optim/combination_sampler.cc.o
[ 74%] Building CXX object src/CMakeFiles/colmap.dir/optim/least_absolute_deviations.cc.o
[ 74%] Building CXX object src/CMakeFiles/colmap.dir/optim/progressive_sampler.cc.o
[ 74%] Building CXX object src/CMakeFiles/colmap.dir/optim/random_sampler.cc.o
[ 74%] Building CXX object src/CMakeFiles/colmap.dir/optim/sprt.cc.o
[ 74%] Building CXX object src/CMakeFiles/colmap.dir/optim/support_measurement.cc.o
[ 74%] Building CXX object src/CMakeFiles/colmap.dir/retrieval/geometry.cc.o
[ 76%] Building CXX object src/CMakeFiles/colmap.dir/retrieval/vote_and_verify.cc.o
[ 76%] Building CXX object src/CMakeFiles/colmap.dir/sfm/incremental_mapper.cc.o
[ 76%] Building CXX object src/CMakeFiles/colmap.dir/sfm/incremental_triangulator.cc.o
[ 76%] Building CXX object src/CMakeFiles/colmap.dir/util/bitmap.cc.o
[ 76%] Building CXX object src/CMakeFiles/colmap.dir/util/camera_specs.cc.o
[ 78%] Building CXX object src/CMakeFiles/colmap.dir/util/logging.cc.o
[ 78%] Building CXX object src/CMakeFiles/colmap.dir/util/math.cc.o
[ 78%] Building CXX object src/CMakeFiles/colmap.dir/util/misc.cc.o
[ 78%] Building CXX object src/CMakeFiles/colmap.dir/util/opengl_utils.cc.o
[ 78%] Building CXX object src/CMakeFiles/colmap.dir/util/option_manager.cc.o
[ 80%] Building CXX object src/CMakeFiles/colmap.dir/util/ply.cc.o
[ 80%] Building CXX object src/CMakeFiles/colmap.dir/util/random.cc.o
[ 80%] Building CXX object src/CMakeFiles/colmap.dir/util/string.cc.o
[ 80%] Building CXX object src/CMakeFiles/colmap.dir/util/threading.cc.o
[ 80%] Building CXX object src/CMakeFiles/colmap.dir/util/timer.cc.o
[ 82%] Building CXX object src/CMakeFiles/colmap.dir/util/version.cc.o
[ 82%] Building CXX object src/CMakeFiles/colmap.dir/ui/automatic_reconstruction_widget.cc.o
[ 82%] Building CXX object src/CMakeFiles/colmap.dir/ui/bundle_adjustment_widget.cc.o
[ 82%] Building CXX object src/CMakeFiles/colmap.dir/ui/colormaps.cc.o
[ 82%] Building CXX object src/CMakeFiles/colmap.dir/ui/database_management_widget.cc.o
[ 84%] Building CXX object src/CMakeFiles/colmap.dir/ui/dense_reconstruction_widget.cc.o
[ 84%] Building CXX object src/CMakeFiles/colmap.dir/ui/feature_extraction_widget.cc.o
[ 84%] Building CXX object src/CMakeFiles/colmap.dir/ui/feature_matching_widget.cc.o
[ 84%] Building CXX object src/CMakeFiles/colmap.dir/ui/image_viewer_widget.cc.o
[ 84%] Building CXX object src/CMakeFiles/colmap.dir/ui/license_widget.cc.o
[ 86%] Building CXX object src/CMakeFiles/colmap.dir/ui/line_painter.cc.o
[ 86%] Building CXX object src/CMakeFiles/colmap.dir/ui/log_widget.cc.o
[ 86%] Building CXX object src/CMakeFiles/colmap.dir/ui/main_window.cc.o
[ 86%] Building CXX object src/CMakeFiles/colmap.dir/ui/match_matrix_widget.cc.o
[ 86%] Building CXX object src/CMakeFiles/colmap.dir/ui/model_viewer_widget.cc.o
[ 86%] Building CXX object src/CMakeFiles/colmap.dir/ui/movie_grabber_widget.cc.o
[ 88%] Building CXX object src/CMakeFiles/colmap.dir/ui/options_widget.cc.o
[ 88%] Building CXX object src/CMakeFiles/colmap.dir/ui/point_painter.cc.o
[ 88%] Building CXX object src/CMakeFiles/colmap.dir/ui/point_viewer_widget.cc.o
[ 88%] Building CXX object src/CMakeFiles/colmap.dir/ui/project_widget.cc.o
[ 88%] Building CXX object src/CMakeFiles/colmap.dir/ui/qt_utils.cc.o
[ 90%] Building CXX object src/CMakeFiles/colmap.dir/ui/reconstruction_manager_widget.cc.o
[ 90%] Building CXX object src/CMakeFiles/colmap.dir/ui/reconstruction_options_widget.cc.o
[ 90%] Building CXX object src/CMakeFiles/colmap.dir/ui/reconstruction_stats_widget.cc.o
[ 90%] Building CXX object src/CMakeFiles/colmap.dir/ui/render_options.cc.o
[ 90%] Building CXX object src/CMakeFiles/colmap.dir/ui/render_options_widget.cc.o
[ 92%] Building CXX object src/CMakeFiles/colmap.dir/ui/thread_control_widget.cc.o
[ 92%] Building CXX object src/CMakeFiles/colmap.dir/ui/triangle_painter.cc.o
[ 92%] Building CXX object src/CMakeFiles/colmap.dir/ui/undistortion_widget.cc.o
[ 92%] Building CXX object src/CMakeFiles/colmap.dir/colmap_autogen/UYX5XTB5RZ/qrc_resources.cpp.o
[ 92%] Linking CXX static library libcolmap.a
[ 92%] Built target colmap
[ 94%] Building NVCC (Device) object src/CMakeFiles/colmap_cuda.dir/mvs/colmap_cuda_generated_patch_match_cuda.cu.o
[ 94%] Building NVCC (Device) object src/CMakeFiles/colmap_cuda.dir/mvs/colmap_cuda_generated_gpu_mat_prng.cu.o
[ 94%] Building NVCC (Device) object src/CMakeFiles/colmap_cuda.dir/mvs/colmap_cuda_generated_gpu_mat_ref_image.cu.o
Scanning dependencies of target colmap_cuda
[ 94%] Building CXX object src/CMakeFiles/colmap_cuda.dir/mvs/patch_match.cc.o
[ 94%] Building CXX object src/CMakeFiles/colmap_cuda.dir/util/cuda.cc.o
[ 96%] Building CXX object src/CMakeFiles/colmap_cuda.dir/util/cudacc.cc.o
[ 96%] Linking CXX static library libcolmap_cuda.a
[ 96%] Built target colmap_cuda
Scanning dependencies of target colmap_exe
[ 96%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/colmap.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/gui.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/feature.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/database.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/image.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/model.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/mvs.cc.o
[ 98%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/sfm.cc.o
[100%] Building CXX object src/exe/CMakeFiles/colmap_exe.dir/vocab_tree.cc.o
[100%] Linking CXX executable colmap
[100%] Built target colmap_exe
Install the project...
-- Install configuration: "Release"
-- Installing: /home/shilinzhe/colmap/install/include/colmap
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/opengl_utils.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/bitmap.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/version.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/types.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/logging.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/option_manager.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/ply.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/cache.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/camera_specs.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/string.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/endian.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/threading.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/timer.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/alignment.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/sqlite3_utils.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/misc.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/testing.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/cuda.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/cudacc.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/random.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/util/math.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/sfm
-- Installing: /home/shilinzhe/colmap/install/include/colmap/sfm/incremental_triangulator.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/sfm/incremental_mapper.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/controllers
-- Installing: /home/shilinzhe/colmap/install/include/colmap/controllers/automatic_reconstruction.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/controllers/incremental_mapper.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/controllers/hierarchical_mapper.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/controllers/bundle_adjustment.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/workspace.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/normal_map.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/consistency_graph.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/gpu_mat_ref_image.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/patch_match.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/meshing.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/image.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/cuda_flip.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/gpu_mat.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/cuda_rotate.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/cuda_array_wrapper.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/depth_map.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/mat.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/fusion.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/patch_match_cuda.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/model.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/gpu_mat_prng.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/mvs/cuda_transpose.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/match_matrix_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/options_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/reconstruction_stats_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/image_viewer_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/license_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/feature_matching_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/log_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/movie_grabber_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/media
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/point_painter.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/undistortion_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/colormaps.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/qt_utils.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/triangle_painter.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/reconstruction_options_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/feature_extraction_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/bundle_adjustment_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/dense_reconstruction_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/database_management_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/shaders
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/thread_control_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/render_options.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/render_options_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/main_window.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/line_painter.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/point_viewer_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/project_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/reconstruction_manager_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/model_viewer_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/ui/automatic_reconstruction_widget.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/vocab_tree.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/gui.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/mvs.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/database.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/image.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/feature.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/model.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/exe/sfm.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/visual_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/vote_and_verify.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/inverted_file_entry.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/inverted_file.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/geometry.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/inverted_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/retrieval/utils.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/tools
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/sprt.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/progressive_sampler.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/random_sampler.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/support_measurement.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/ransac.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/loransac.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/sampler.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/bundle_adjustment.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/combination_sampler.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/optim/least_absolute_deviations.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/feature
-- Installing: /home/shilinzhe/colmap/install/include/colmap/feature/extraction.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/feature/types.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/feature/sift.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/feature/matching.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/feature/utils.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/similarity_transform.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/point3d.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/line.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/reconstruction.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/visibility_pyramid.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/camera.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/gps.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/camera_rig.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/camera_database.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/database_cache.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/graph_cut.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/scene_clustering.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/essential_matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/homography_matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/database.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/cost_functions.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/pose.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/image.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/undistortion.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/triangulation.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/projection.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/track.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/warp.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/camera_models.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/polynomial.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/image_reader.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/point2d.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/correspondence_graph.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/base/reconstruction_manager.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/similarity_transform.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/euclidean_transform.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/generalized_relative_pose.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/generalized_absolute_pose.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/essential_matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/generalized_absolute_pose_coeffs.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/homography_matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/essential_matrix_poly.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/affine_transform.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/pose.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/fundamental_matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/triangulation.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/absolute_pose.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/coordinate_frame.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/two_view_geometry.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/essential_matrix_coeffs.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/utils.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/estimators/translation_transform.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/LSD
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/LSD/lsd.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/multilevelLib
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib/rename.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib/struct.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib/macros.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib/metis.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib/defs.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/Graclus/metisLib/proto.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MAT.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.System.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MarchingCubes.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/BSplineData.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.Evaluation.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/FunctionData.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Array.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/PointStream.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MyTime.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/CmdLineParser.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Allocator.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Octree.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/SparseMatrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/SurfaceTrimmer.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/SparseMatrix.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Polynomial.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/PPolynomial.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Geometry.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/BSplineData.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/FunctionData.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Geometry.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Polynomial.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Ply.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.SortedTreeNodes.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Array.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Octree.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.WeightedSamples.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/PointStream.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/CmdLineParser.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MemoryUsage.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MultiGridOctreeData.IsoSurface.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/MAT.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/PPolynomial.inl
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Factor.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/Hash.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/BinaryNode.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PoissonRecon/PoissonRecon.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/general.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/cutil_math.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/serialization.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/lsh_table.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/saving.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/logger.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/any.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/cuda
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/cuda/result_set.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/cuda/heap.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/sampling.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/timer.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/allocator.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/result_set.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/heap.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/params.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/dynamic_bitset.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/object_factory.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/util/random.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/ext
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/ext/lz4hc.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/ext/lz4.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/io
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/io/hdf5.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/config.h.in
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/defines.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/nn_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/kdtree_cuda_3d_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/center_chooser.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/autotuned_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/dist.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/kdtree_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/kmeans_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/all_indices.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/lsh_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/composite_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/linear_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/kdtree_cuda_builder.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/kdtree_single_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/algorithms/hierarchical_clustering_index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/mpi
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/mpi/queries.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/mpi/index.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/mpi/client.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/mpi/server.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/mpi/matrix.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/nn
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/nn/simplex_downhill.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/nn/ground_truth.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/nn/index_testing.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/config.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/flann.hpp
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/FLANN/flann.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/svmdataset.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/mathop_sse2.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/imopv_sse2.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/scalespace.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/kmeans.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/aib.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/mathop_avx.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/vlad.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/stringop.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/kdtree.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/lbp.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/array.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/quickshift.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/ikmeans.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/getopt_long.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/float.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/qsort-def.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/shuffle-def.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/heap-def.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/generic.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/covdet.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/sift.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/imopv.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/dsift.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/rodrigues.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/liop.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/hikmeans.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/homkermap.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/hog.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/gmm.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/mathop.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/mser.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/fisher.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/host.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/svm.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/pgm.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/slic.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/VLFeat/random.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/CLTexImage.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/LiteWindow.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/SiftMatchCU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/SiftPyramid.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/ShaderMan.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/PyramidCU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/SiftGPU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/ProgramCU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/CuTexImage.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/GLTexImage.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/PyramidGL.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/PyramidCL.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/ProgramGLSL.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/GlobalUtil.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/ProgramGPU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/ProgramCL.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/FrameBufferObject.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/ProgramCG.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SiftGPU/SiftMatch.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/ConfigBA.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/ProgramCU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/CuTexImage.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/SparseBundleCU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/SparseBundleCPU.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/util.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/DataInterface.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/PBA/pba.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SQLite
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SQLite/sqlite3ext.h
-- Installing: /home/shilinzhe/colmap/install/include/colmap/lib/SQLite/sqlite3.h
-- Installing: /home/shilinzhe/colmap/install/share/colmap/COLMAPConfig.cmake
-- Installing: /home/shilinzhe/colmap/install/share/colmap/COLMAPConfigVersion.cmake
-- Installing: /home/shilinzhe/colmap/install/share/colmap/cmake
-- Installing: /home/shilinzhe/colmap/install/share/colmap/cmake/FindEigen3.cmake
-- Installing: /home/shilinzhe/colmap/install/share/colmap/cmake/FindGlew.cmake
-- Installing: /home/shilinzhe/colmap/install/share/colmap/cmake/FindGlog.cmake
-- Installing: /home/shilinzhe/colmap/install/share/colmap/cmake/FindFreeImage.cmake
-- Installing: /home/shilinzhe/colmap/install/share/applications/COLMAP.desktop
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libflann.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libgraclus.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/liblsd.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libpba.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libpoisson_recon.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libsift_gpu.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libsqlite3.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libvlfeat.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libcolmap.a
-- Installing: /home/shilinzhe/colmap/install/lib/colmap/libcolmap_cuda.a
-- Installing: /home/shilinzhe/colmap/install/bin/colmap