- 安装cmake
wget https://cmake.org/files/v3.6/cmake-3.6.0.tar.gz
tar -xvf cmake-3.6.0.tar.gz
cd cmake-3.6.0.tar.gz
./configure
make -j20
make install
- 安装依赖
yum install gcc gcc-c++ gtk2-devel gimp-devel gimp-devel-tools gimp-help-browser zlib-devel libtiff-devel libjpeg-devel libpng-devel gstreamer-devel libavc1394-devel libraw1394-devel libdc1394-devel jasper-devel jasper-utils swig python libtool nasm
- 安装opencv
官网下载opencv2.4.13.zip
unzip opencv-2.4.13.zip
cd opencv-2.4.13/
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D BUILD_PYTHON_SUPPORT=ON -D PYTHON_INCLUDE_DIR=/home/rec/anaconda2/include/python2.7 -D PYTHON_LIBRARY=/home/rec/anaconda2/lib CMakeList.txt
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D BUILD_opencv_python=ON -D PYTHON_INCLUDE_DIR=/home/rec/anaconda2/include/python2.7 -D PYTHON_LIBRARY=/home/rec/anaconda2/lib CMakeList.txt(opencv3.0)
make -j20
make install
参考文献:
https://stackoverflow.com/questions/44038198/opencv-3-0-0-install-error-on-centos7
http://blog.csdn.net/xushouwei/article/details/51933487
http://www.cnblogs.com/xixixing/p/6096057.html
http://answers.opencv.org/question/10651/cv2so-missing-after-opencv-installed/