13
16

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 5 years have passed since last update.

OpenCVで画像の色反転をしてみた

Posted at

<実装手順>

Python4行で試せます!

  1. ライブラリのインポート
  2. 画像の読み込み
  3. 色反転の処理を実行
  4. 変換後の画像を保存

実際にやってみた

####1.ライブラリのインポート

import cv2

OpenCVのライブラリをインポートします。
※OpenCVをインストール済みの状態とします。

####2.画像の読み込み

img = cv2.imread('./data/pict/image1.jpg')

imread関数を使って指定したパスから画像を読み込みます。

####3.色反転の処理を実行

image2 = cv2.bitwise_not(img)

bitwise_not関数で色反転の処理を行います。

####4.変換後の画像を保存

cv2.imwrite('./data/pict/image2.jpg',image2)

imwrite関数で変換後の画像を保存します。

###実行すると

もとの画像
image1.jpg

変換後の画像
imageimage2.jpg

となることが確認できました。

13
16
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
13
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?