scipyでサンプル画像を読み込むワンライナー
テスト用画像が欲しいときに使ってます。
from scipy import misc
img=misc.ascent()
import matplotlib.pyplot as plt
plt.imshow(img, cmap='gray')
または、
img=misc.face()
plt.imshow(img)
768x1024x3のカラー画像が得られます。
いつの間にか(scipy 0.17~)misc.lenaは無くなっていました。
Author And Source
この問題について(scipyでサンプル画像を読み込むワンライナー), 我々は、より多くの情報をここで見つけました https://qiita.com/zerowarurei/items/19043eca4867cfdce771著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .