zoukankan      html  css  js  c++  java
  • opencv3.2 编译安装说明

    1. Create a temporary directory, which we denote as <cmake_binary_dir>, where you want to put the generated Makefiles, project files as well the object filees and output binaries

    2. Enter the <cmake_binary_dir> and type

      cmake [<some optional parameters>] <path to the OpenCV source directory>
      

      For example

      cd ~/opencv
      mkdir release
      cd release
      cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX= /usr/local
      
    3. Enter the created temporary directory (<cmake_binary_dir>) and proceed with:

      make
      sudo make install

      转自http://www.opencv.org.cn/opencvdoc/2.3.2/html/doc/tutorials/introduction/linux_install/linux_install.html
  • 相关阅读:
    第三章例3-3
    第三章例3-2
    第二章例2-11
    第二章例2-10
    第二章例2-9
    204
    205
    202
    203
    201
  • 原文地址:https://www.cnblogs.com/fdd566/p/6409682.html
Copyright © 2011-2022 走看看