Last active
October 3, 2015 02:42
-
-
Save Meekohi/c802d381076d02e76ba8 to your computer and use it in GitHub Desktop.
Building openMVG and openMVS on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# openMVG | |
cd; cd openmvg_build | |
rm -rf * | |
cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX:STRING="/Users/meekohi/openMVG_build/openMVG_install" . ../openMVG/src/ | |
make -j 8 | |
make install | |
#openMVS | |
cd; cd openmvs_build | |
rm -rf * | |
VCG_ROOT=/Users/meekohi/vcglib/ EIGEN_ROOT=/usr/local/Cellar/eigen/3.2.4/include/eigen3/ OpenCV_DIR=/usr/local/opt/opencv3 cmake -DCMAKE_BUILD_TYPE=RELEASE -DOpenMVG_DIR=/Users/meekohi/openmvg_build/openMVG_install/share/openMVG/cmake/ . ../openMVS/ | |
make -j 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please add also how and which dependencies you installed (external libs), cause I understood you didn't use MacPorts (https://www.macports.org/)