Python3にOpenCVをインストールする

それじゃOpebCVから。

$ sudo pip install opencv-python
Successfully installed numpy-1.14.3 opencv-python-3.4.1.15

まずはインストール成功。

次に拡張モジュール群のOpenCV contribをインストール。

$ sudo pip install opencv-contrib-python
Successfully installed opencv-contrib-python-3.4.1.15

インストール成功。

必要なものを次々インストール。

$ sudo pip install matplotlib
Successfully installed cycler-0.10.0 kiwisolver-1.0.1 matplotlib-2.2.2 pyparsing-2.2.0 python-dateutil-2.7.3 pytz-2018.4 six-1.11.0

$ sudo pip install scipy
Successfully installed scipy-1.1.0

$ sudo pip install ipython pyreadline
Successfully installed backcall-0.1.0 decorator-4.3.0 ipython-6.4.0 ipython-genutils-0.2.0 jedi-0.12.0 parso-0.2.1 pexpect-4.5.0 pickleshare-0.7.4 prompt-toolkit-1.0.15 ptyprocess-0.5.2 pygments-2.2.0 pyreadline-2.1 simplegeneric-0.8.1 traitlets-4.3.2 wcwidth-0.1.7

$ sudo pip install jupyter
Successfully installed MarkupSafe-1.0 Send2Trash-1.5.0 bleach-2.1.3 entrypoints-0.2.3 html5lib-1.0.1 ipykernel-4.8.2 ipywidgets-7.2.1 jinja2-2.10 jsonschema-2.6.0 jupyter-1.0.0 jupyter-client-5.2.3 jupyter-console-5.2.0 jupyter-core-4.4.0 mistune-0.8.3 nbconvert-5.3.1 nbformat-4.4.0 notebook-5.5.0 pandocfilters-1.4.2 pyzmq-17.0.0 qtconsole-4.3.1 terminado-0.8.1 testpath-0.3.1 tornado-5.0.2 webencodings-0.5.1 widgetsnbextension-3.2.1

正常に動くかテスト。

$ ipython
Python 3.6.5 (default, May 23 2018, 19:51:39)
Type 'copyright', 'credits' or 'license' for more information
IPython 6.4.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: import cv2

In [2]: cv2.__version__
Out[2]: '3.4.1'


ちゃんと動いてるね。

0 件のコメント:

コメントを投稿