Python matplotlibを用いた画像読み込み コメントをどうぞ Python matplotlibを用いた画像読み込みのサンプルです。 import matplotlib.pyplot as plt from matplotlib.image import imread # 読み込めるのはPNG形式のファイル img = imread('rem2.png') plt.imshow(img) # グラフの描画実行 plt.show() 関連記事一覧Python matplotlibを用いたグラフの複数表示Python numpy(1)Python メール送信Python 日付/時刻の取得Python BeautifulSoup WEBスクレイピングPython BeautifulSoup WEBスクレイピング エラー時の対応 Pocket