opencv
OpenCV-Installation
Suche…
Einführung
OpenCV-Installation Unter Linux, Mac OS und Windows
OpenCV-Installation unter Ubuntu
Quellverbindung
Öffnen Sie das Terminal und schreiben Sie die folgenden Befehle.
1-Update und Aktualisierungspaket für Ihr System Ubuntu:
sudo su
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get -y dist-upgrade
sudo apt-get -y autoremove
2-Installation von Abhängigkeiten:
sudo apt-get install libopencv-dev
3-Build-Tools für OpenCV Quellcode:
sudo apt-get install build-essential checkinstall cmake pkg-config
4-Image-E / A-Bibliotheken für OpenCV:
sudo apt-get install libtiff5-dev libjpeg-dev libjasper-dev libpng12-dev zlib1g-dev libopenexr-dev libgdal-dev
5-Video-E / A-Bibliotheken für OpenCV:
sudo apt-get install libavcodec-dev libavformat-dev libmp3lame-dev libswscale-dev libdc1394–22-dev libxine2-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libv4l-dev v4l-utils libfaac-dev libopencore-amrnb-dev libopencore-amrwb-dev libtheora-dev libvorbis-dev libxvidcore-dev libx264-dev x264 yasm
6-Parallelismus- und lineare Algebra-Bibliotheken:
sudo apt-get install libtbb-dev libeigen3-dev
Bibliotheken mit 7 grafischen Benutzeroberflächen:
sudo apt-get install libqt4-dev libgtk2.0-dev qt5-default
sudo apt-get install libvtk6-dev
8 – Java-Installation:
sudo apt-get install ant default-jdk
9-Python-Installation:
sudo apt-get install python-dev python-tk python-numpy python3-dev python3-tk python3-numpy python-matplotlib
sudo apt-get install python-opencv
sudo apt-get install doxygen
10-Download OPENCV-Quellcode von Github:
wget https://github.com/opencv/opencv/archive/3.2.0.zip
11-Dekomprimieren Sie die OPENCV-Zip-Datei:
unzip 3.2.0.zip
12-OPENCV Zip-Datei entfernen:
rm 3.2.0.zip
13-Build OPENCV:
mv opencv-3.2.0 opencv
cd opencv
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_DOC=ON -D BULD_EXAMPLES=ON -D WITH_QT=ON -D WITH_OPENGL=ON -D WITH_EIGEN=ON -D FORCE_VTK=TRUE -D WITH_VTK=ON ..
make -j4
sudo make installieren
sudo sh -c 'echo "/usr/local/lib" > /etc/ld.so.conf.d/opencv.conf'
sudo ldconfig
14 abgeschlossen Überprüfen Sie Ihre OpenCV-Versionsnummer:
pkg-config — modversion opencv
pkg-config — cflags opencv
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow