zoukankan      html  css  js  c++  java
  • Centos 安装 OpenCV

    • 安装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/

  • 相关阅读:
    Tapestry AppModule中的方法
    Tapestry Grid
    Tapestry5之AutoLoading Module
    Tapestry Submits
    Tapestry SubmitLink
    再读Struts2之一:总括
    Java war包取之外的properties文件
    用ORACLE的高级复制实现内外网数据同步【转】
    在Oracle中实现数据库的复制
    解决ORA12560: TNS: 协议适配器错误
  • 原文地址:https://www.cnblogs.com/jhc888007/p/7647712.html
Copyright © 2011-2022 走看看