3
5

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.

Ubuntu に python の opencv をインストール

Last updated at Posted at 2021-02-28

Ubuntu に python の opencv をインストールします。

なにやら OpenCV の sift が普通に使えるようになったからインストールしてみました。

SIFTの特許が切れてOpenCV v4.4.0から普通に使えるようになってた話 - Qiita

ただし、2021年3月1日現在、下記でインストールされるバージョンは 4.2 になります。

今来た3行向けの方

# pip3 install
sudo apt update ;
sudo apt install python3-pip ;
pip3 --version ;

# opencv install ;
pip install opencv-python ;
pip install opencv-contrib-python ;
dpkg -l | grep libopencv ;

####参考リンク

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?