Skip to content

Instantly share code, notes, and snippets.

@drhirsch
Created September 5, 2016 02:55
Show Gist options
  • Save drhirsch/780ae2bc43efe763d8668e868dbb9fc2 to your computer and use it in GitHub Desktop.
Save drhirsch/780ae2bc43efe763d8668e868dbb9fc2 to your computer and use it in GitHub Desktop.
Cmake commands for OpenCV 3.1
#/bin/sh
cd /tmp
wget https://github.com/Itseez/opencv/archive/3.1.0.zip
unzip 3*.zip
cd /opencv*
mkdir release
cd release
cmake -DBUILD_TIFF=ON -DBUILD_opencv_java=OFF -DWITH_CUDA=OFF -DENABLE_AVX=ON -DWITH_OPENGL=ON -DWITH_OPENCL=ON -DWITH_IPP=ON -DWITH_TBB=ON -DWITH_EIGEN=ON -DWITH_V4L=ON -DWITH_VTK=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=$(python3 -c "import sys; print(sys.prefix)") -DPYTHON3_EXECUTABLE=$(which python3) -DPYTHON3_INCLUDE_DIR=$(python3 -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())") -DPYTHON3_PACKAGES_PATH=$(python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment