Skip to content

Instantly share code, notes, and snippets.

@cckwes
Last active August 29, 2015 14:22
Show Gist options
  • Save cckwes/eff2c1d1110a1cfa800d to your computer and use it in GitHub Desktop.
Save cckwes/eff2c1d1110a1cfa800d to your computer and use it in GitHub Desktop.
Guide to build opencv 3.0 in ubuntu 15.04
1.) Prepare by installing compiler and required library (optional is also installed for this tutorial)
sudo apt-get install build-essential cmake cmake-gui git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev python3-dev python3-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libjasper-dev libdc1394-22-dev
2.) Clone the git repo
git clone https://github.com/Itseez/opencv.git
3.) Switch to the 3.0.0 tag
cd opencv/
git checkout 3.0.0
4.) Create the build dir
mkdir build
cd build
5.) Cmake
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
6.) GUI cmake
cmake-gui ../
7.) Check options
- make sure BUILD_opencv_python2 and BUILD_opencv_python3 is checked if you want to build for python
- WITH_QT is unchecked (because OpenCV does not support Qt5)
- WITH_OPENMP to enable openmp support
- WITH_CUBLAS for CUDA BLAS support (basic linear algebra system)
8.) Build
make -j4
9.) Install
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment