Deep LearningPython

【Python】PythonのMatplotlibのimageを利用して画像を表示させる(動画)

Python

PythonのMatplotlib.imageを紹介します。

PyCharmを利用します。下記のリンクてダウンロードできます。

 

PyCharm

PyCharmをプロジェクトを作成し設定に移動します。Matplotlibをインストールします。

下記の動画を参考してください。

matplotlib.imageのモジュールのimread()利用することが可能です。imshow()を利用すると画像の表示が可能となります。

 

plt.show()を入れないとグラフが表示されません。

ソースコードは下記となります。

import matplotlib.pyplot as plt
from matplotlib.image import imread

img = imread('img/cat.png')
plt.imshow(img)

plt.show()