LoginSignup
3
2

More than 1 year has passed since last update.

PythonでopenCVのインストール

Last updated at Posted at 2018-09-29

#はじめに
機械学習の前処理のために画像編集する必要があるので、openCVを導入していみました

#実行環境
OS windows10
Python 3.6.4を使用
Anacondaを使用してインストールしました
参考URL
Python開発環境構築 ー PyCharm × Anaconda

#環境構築
コマンドプロンプトを立ち上げる
cmdで検索すれば見つかります

pip install opencv-python

確認はそのままコマンドプロンプト上でpip listで確認

pip list

#実行
または、実際にimportして使ってみる

import cv2

参考にしたページ
ゼロからはじめるPython|マイナビ 第34回 OpenCVをインストールしてみよう

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