Changes between Version 13 and Version 14 of VisionFramework


Ignore:
Timestamp:
Nov 19, 2017, 1:45:45 PM (7 years ago)
Author:
benjialbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VisionFramework

    v13 v14  
    112112sudo python setup.py install
    113113}}}
     114
     115Now we are going to install OpenCV and its dependencies:
     116{{{
     117sudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
     118cd
     119git clone https://github.com/opencv/opencv.git
     120cd opencv
     121mkdir build
     122cd build
     123cmake -DCMAKE_RELEASE_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_SHARED_LIBS=OFF ..
     124make -j $[$(nproc)+1]
     125sudo make install
     126}}}