0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Python] OpenCVのインストール方法 (mac)

Last updated at Posted at 2021-05-12

#OpenCVとは
OpenCVとは Open Source Computer Vision Library の略です。
画像処理や画像解析や機械学習の難しい機能を、誰でも簡単に使えるようにまとめて整えたプログラムの集まりで、誰でも無料で使える機能です。

#インストール方法
homebrewを使ってopenCVをインストールします。
以下のコマンドを実行します。(インストールが終わるまで10分ほどかかります。)

$ brew install opencv

次に以下のコマンドを実行して、pipで対応するモジュールをインストールします。

$ pip3 install opencv-python

#インストールできたのかを確認する

$ python3

実行して以下のように表示されれば成功です。

Python 3.9.5 (default, May  4 2021, 03:36:27) 
[Clang 12.0.0 (clang-1200.0.32.29)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>

>>> の後に exit() を実行すると戻ります。)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?