Last active
August 29, 2015 14:05
-
-
Save smithjessk/bde98ec9297b38bad40c to your computer and use it in GitHub Desktop.
Install OpenCV 2.4.9 for Ubuntu; Derived from https://github.com/jayrambhia/Install-OpenCV/blob/master/Ubuntu/2.4/opencv2_4_8.sh
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
# Install OpenCV 2.4.9 for Ubuntu | |
# Derived from https://github.com/jayrambhia/Install-OpenCV/blob/master/Ubuntu/2.4/opencv2_4_8.sh | |
# @author Jess Smith <smith.jessk@gmail.com> | |
# @license MIT | |
arch=$(uname -m) | |
if [ "$arch" == "i686" -o "$arch" == "i386" -o "$arch" == "i486" -o "$arch" == "i586" ]; then | |
flag=1 | |
else | |
flag=0 | |
fi | |
echo "Installing OpenCV 2.4.9" | |
mkdir OpenCV | |
cd OpenCV | |
echo "Removing any pre-installed ffmpeg and x264" | |
sudo apt-get -y remove ffmpeg x264 libx264-dev | |
echo "Installing Dependenices" | |
sudo apt-get -y install libopencv-dev | |
sudo apt-get -y install build-essential checkinstall cmake pkg-config yasm | |
sudo apt-get -y install libtiff4-dev libjpeg-dev libjasper-dev | |
sudo apt-get -y install libavcodec-dev libavformat-dev libswscale-dev libdc1394-22-dev libxine-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libv4l-dev | |
sudo apt-get -y install python-dev python-numpy | |
sudo apt-get -y install libtbb-dev | |
sudo apt-get -y install libqt4-dev libgtk2.0-dev | |
sudo apt-get -y install libfaac-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libtheora-dev libvorbis-dev libxvidcore-dev | |
sudo apt-get -y install x264 v4l-utils ffmpeg | |
sudo apt-get -y install libgtk2.0-dev | |
echo "Downloading OpenCV 2.4.9" | |
wget -O OpenCV-2.4.9.zip http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.9/opencv-2.4.9.zip/download | |
echo "Installing OpenCV 2.4.9" | |
unzip OpenCV-2.4.9.zip | |
cd opencv-2.4.9 | |
mkdir build | |
cd build | |
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=ON -D WITH_V4L=ON -D INSTALL_C_EXAMPLES=ON -D INSTALL_PYTHON_EXAMPLES=ON -D BUILD_EXAMPLES=ON -D WITH_QT=ON -D WITH_OPENGL=ON .. | |
make -j4 | |
sudo make install | |
sudo sh -c 'echo "/usr/local/lib" > /etc/ld.so.conf.d/opencv.conf' | |
sudo ldconfig | |
echo "OpenCV 2.4.9 ready to be used" |
How can I remove all traces of this openCV install ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
send a pull request. :)