Required tools:
- CMake
- Git
- C/C++ compiler (GCC, Visual Studio or Clang)
Optional tools:
- QT version >= v5.4
As OpenMVG uses some C++11 features, you must have a C++11 ready compiler:
- Visual Studio >= 2015 (recommended)
- GCC >= 4.8.1
- Clang >= 3.3
Note:
-
CMAKE OpenMVG variables you can configure:
- OpenMVG_BUILD_TESTS (ON/OFF(default))
- Build OpenMVG unit tests
- OpenMVG_BUILD_EXAMPLES (ON/OFF(default))
- Build OpenMVG example applications.
- OpenMVG_BUILD_SOFTWARES (ON(default)/OFF)
- Build OpenMVG applications.
- OpenMVG_BUILD_TESTS (ON/OFF(default))
-
General information for OpenMVG SfM pipelines:
- OpenMVG can export graphs as Graphviz .dot files and render them as SVG files. If you want this graph visualization feature, please install Graphviz.
- Getting the project
- Compiling on Linux
- Compiling on Windows
- Compiling on MacOS
- Compiling using VCPKG
- Using Docker
Getting the sources (and the submodules):
$ git clone --recursive https://github.com/openMVG/openMVG.git
or
$ git clone https://github.com/openMVG/openMVG.git
$ cd openMVG
$ git submodule init
$ git submodule update
- Install the required external libraries.
$ sudo apt-get install libpng-dev libjpeg-dev libtiff-dev libxxf86vm1 libxxf86vm-dev libxi-dev libxrandr-dev
If you want see the view graph svg logs, install Graphviz.
$ sudo apt-get install graphviz
- Checkout OpenMVG.
$ git clone --recursive https://github.com/openMVG/openMVG.git
$ mkdir openMVG_Build && cd openMVG_Build
- Configure and build
$ cmake -DCMAKE_BUILD_TYPE=RELEASE ../openMVG/src/
$ cmake --build . --target install
Run tests using make or ctest (if requested in the CMake command line with -DOpenMVG_BUILD_TESTS=ON
)
$ make test
$ ctest --output-on-failure -j
- Checkout the project
$ git clone --recursive https://github.com/openMVG/openMVG.git
- Open cmake-gui.
- Fill the source path with the src OpenMVG path.
- Fill the build path with a new directory.
- Select your Visual Studio IDE and click configure and then generate.
- Open the .sln solution created in your build directory.
- Change the target to Release.
- Compile the libraries and binaries samples.
Another options is to build with cmake in console. I recommend launching VS2015/VS2017 x64 Native Tools Command Prompt
which has build environment already set up or to use the VCPKG alternative.
$ git clone --recursive https://github.com/openMVG/openMVG.git
$ cd openMVG
$ ls
AUTHORS BUILD docs logo README src ...
$ cd ..
$ mkdir openMVG_Build
$ cd openMVG_Build
If you want to use Xcode and compile by using the command line, run
$ cmake -DCMAKE_BUILD_TYPE=RELEASE -G "Xcode" . ../openMVG/src/
$ xcodebuild -configuration Release
otherwise you can use standard makefiles
$ cmake -DCMAKE_BUILD_TYPE=RELEASE . ../openMVG/src/
After, you build
$ cmake --build . --target install
Checking and build VCPKG
$ git clone https://github.com/Microsoft/vcpkg
$ cd vcpkg
$ ./bootstrap-vcpkg.sh/bat
VCPKG can build OpenMVG using a native port, or you can build the dependencies and make your custom OpenMVG build.
vcpkg install openmvg[core,openmp]
See here for more details about the VCPKG port.
Checking OpenMVG 3rd party dependencies by using VCPKG (configure your build triplet if needed see the --triplet
option)
$ ./vcpkg install cereal ceres eigen3 libjpeg-turbo libpng tiff
Note: If you want to use ceres with a sparse back-end, please use one of this choice ceres[cxsparse]
or ceres[suitesparse]
or ceres[eigensparse]
.
Checking out OpenMVG and build it
$ git clone --recursive https://github.com/openMVG/openMVG.git
$ mkdir openMVG_Build
$ cd openMVG_Build
$ cmake -DCMAKE_TOOLCHAIN_FILE=<VCPKG_ROOT>/scripts/buildsystems/vcpkg.cmake ../openMVG/src/
$ cmake --build .
Build the docker image
$ git clone --recursive https://github.com/openMVG/openMVG.git
$ docker build . -t openmvg
$ docker run -it openmvg /bin/sh
You can bind directories between the host and the container using --volume
or --mount
option in order to access to any files and directories on a host machine from the container. (See the docker documentation.)
example:
# launch a container
$ docker run -it \
--rm \ # Automatically remove the container when it exits
--volume /path/to/dataset/:/dataset:ro \ #read only
openmvg
# dataset/ can be found in the root directory
root@de138d2f6223:/# ls /
... dataset/ ...
Add -DOpenMVG_USE_OPENCV=ON
to your cmake command and set the OpenCV_DIR variable to your OpenCV build directory
e.g. -DOpenCV_DIR="/home/user/Dev/github/itseez/opencv_Build" -DOpenMVG_USE_OPENCV=ON
OpenMVG can be used as a third party library once it has been installed. Because it can use its own Ceres version, it's better to install it locally and not in system files. So please consider using the CMAKE_INSTALL_PREFIX CMake variable to specify a local installation directory.
Here is the syntax to add the variable to the cmake command (use absolute path):
-DCMAKE_INSTALL_PREFIX:STRING="YourInstallPath"
e.g -DCMAKE_INSTALL_PREFIX:STRING="/home/user/Dev/github/openMVG_Build/openMVG_install"
Perform make
and make install
.
Once the library has been installed, go to your project that wants to use OpenMVG as an external library and add
find_package(OpenMVG REQUIRED)
include_directories(${OPENMVG_INCLUDE_DIRS})
add_executable(main main.cpp)
target_link_libraries(main ${OPENMVG_LIBRARIES})
or with modern target-based approach (CMake 3.0+, Includes directories will be added by CMake target transitivity)
find_package(OpenMVG REQUIRED)
add_executable(main main.cpp)
target_link_libraries(main
PRIVATE
OpenMVG::openMVG_sfm
OpenMVG::openMVG_matching
...
)
The list of available openMVG libraries is (use only the ones you need):
OpenMVG::openMVG_camera
OpenMVG::openMVG_exif
OpenMVG::openMVG_features
OpenMVG::openMVG_geodesy
OpenMVG::openMVG_geometry
OpenMVG::openMVG_graph
OpenMVG::openMVG_image
OpenMVG::openMVG_linearProgramming
OpenMVG::openMVG_matching
OpenMVG::openMVG_matching_image_collection
OpenMVG::openMVG_multiview
OpenMVG::openMVG_numeric
OpenMVG::openMVG_robust_estimation
OpenMVG::openMVG_sfm
OpenMVG::openMVG_system
If OpenMVG has been installed by using the CMake OpenMVG_DIR variable you can specify where the install have been done manually by using:
-DOpenMVG_DIR:STRING="YourInstallPath"/lib/openMVG/cmake
A message will be displayed if OpenMVG is found or not at the CMake configure step.