标签: image numpy load scipy pypy
如何加载图片(文件)并将其保存到多维numpy数组并显示?我需要pypy的例子。
在python中我有源代码:
from scipy import misc import matplotlib.pyplot as plt picture = misc.imread('parrot.jpg') plt.imshow(newPicture) plt.show()