[検証環境]
Ubuntu MATE 16.04 LTS
概要
これはメモです。
まだテスト中です。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
$ sudo apt-get update $ sudo apt install dphys-swapfile $ free $ sudo apt-get --install-recommends install fcitx-mozc fcitx-libs-qt5 fcitx-frontend-qt5 $ sudo apt-get install python2.7-dev $ sudo apt-get install python-numpy python-scipy python-matplotlib python-pyproj $ cd ~ $ wget -O opencv-3.1.0.zip https://github.com/Itseez/opencv/archive/3.1.0.zip $ wget -O opencv_contrib-3.1.0.zip https://github.com/Itseez/opencv_contrib/archive/3.1.0.zip $ unzip opencv-3.1.0.zip $ unzip opencv_contrib-3.1.0.zip $ sudo apt-get install build-essential cmake pkg-config $ sudo apt-get install libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev $ sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev $ sudo apt-get install libxvidcore-dev libx264-dev $ sudo apt-get update $ sudo apt-get install libgtk2.0-dev $ sudo apt-get install libatlas-base-dev gfortran $ sudo apt-get install mesa-utils $ sudo apt-get install libgl1-mesa-dri $ sudo apt-get install libprotobuf-dev protobuf-compiler $ sudo apt-get update $ sudo apt-get install libvtk5-dev libvtk5-qt4-dev $ sudo apt-get install python-vtk tcl-vtk $ sudo apt-get install libeigen3-dev $ sudo apt-get install libv4l-dev ※ 以下のパッケージは入れない。 $ sudo apt-get install libqt4-core libqtgui4 libqt4-test libqt4-opengl-dev libqt4-coreは16.0.4向けには提供されていないそうだ。 http://askubuntu.com/questions/766615/how-to-install-libqt4-core-and-libqt4-gui-on-ubuntu-16-04 このサイトによると、 OpenGLドライバはCMake のオプションで OFFに ※ ※※※※※※※※※※※※※ $ sudo apt-get install libtesseract-dev libleptonica-dev tesseract-ocr $ sudo apt-get install tesseract-ocr-jpn tesseract-ocr-osd $ cd ~/opencv-3.1.0/ $ mkdir build_with_contrib $ cd build_with_contrib $ cmake -D CMAKE_BUILD_TYPE=RELEASE \ -D CMAKE_INSTALL_PREFIX=/usr/local \ -D INSTALL_PYTHON_EXAMPLES=ON \ -D WITH_OPENGL=OFF\ -D OPENCV_EXTRA_MODULES_PATH=~/opencv_contrib-3.1.0/modules \ -D BUILD_EXAMPLES=ON .. $ make -j4 $ sudo make install $ sudo ldconfig |
Raspberry Pi 3にOpenCV 3.1のインストール | TomoSofthttp://tomosoft.jp/design/?p=7476
Raspbian (Raspberry Pi 3 model B) に OpenCV 3.1 をインストールする – ながいものには、まかれたくないhttp://a244.hateblo.jp/entry/2016/10/18/053000
Install guide: Raspberry Pi 3 + Raspbian Jessie + OpenCV 3 – PyImageSearchhttp://www.pyimagesearch.com/2016/04/18/install-guide-raspberry-pi-3-raspbian-jessie-opencv-3/
Raspberry Pi で OpenCV(リベンジ) – Qiitahttp://qiita.com/suppy193/items/91609e75789e9f458c39
コメント