Created
April 21, 2018 20:43
-
-
Save fagnersutel/95aa07da662845a1c22a0c968031c7a9 to your computer and use it in GitHub Desktop.
Install OpenCV 3 with Python 2.7 on Ubuntu
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
# Configuration | |
HOME_DIR=/home/[user]/ | |
VERSION=3.2.0 | |
# Installation | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install -y build-essential cmake pkg-config | |
sudo apt-get install -y libjpeg8-dev libtiff5-dev libjasper-dev libpng12-dev | |
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev libv4l-dev | |
sudo apt-get install -y libxvidcore-dev libx264-dev | |
sudo apt-get install -y libgtk-3-dev | |
sudo apt-get install -y libatlas-base-dev gfortran | |
sudo apt-get install -y python2.7-dev | |
cd ${HOME_DIR} | |
wget -O opencv.zip https://github.com/Itseez/opencv/archive/${VERSION}.zip | |
unzip opencv.zip | |
wget -O opencv_contrib.zip https://github.com/Itseez/opencv_contrib/archive/${VERSION}.zip | |
unzip opencv_contrib.zip | |
cd ${HOME_DIR}/opencv-${VERSION}/ | |
mkdir build | |
cd build | |
cmake -D CMAKE_BUILD_TYPE=RELEASE \ | |
-D CMAKE_INSTALL_PREFIX=/usr/local \ | |
-D INSTALL_PYTHON_EXAMPLES=ON \ | |
-D INSTALL_C_EXAMPLES=OFF \ | |
-D OPENCV_EXTRA_MODULES_PATH=${HOME_DIR}/opencv_contrib-${VERSION}/modules \ | |
-D PYTHON_EXECUTABLE=/usr/bin/python \ | |
-D BUILD_EXAMPLES=ON .. | |
# Check output cmake, it should include python 2 | |
# For more information check: http://www.pyimagesearch.com/2016/10/24/ubuntu-16-04-how-to-install-opencv/ | |
make -j4 | |
make install | |
sudo ldconfig | |
cd ${HOME_DIR} | |
rm -rf opencv-${VERSION} opencv_contrib-${VERSION} opencv.zip opencv_contrib.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment