这只是一个安装问题。
如果尚未安装pip,请先在系统上安装它。它也可用于Windows。
升级您的numpy,pip /枕头,scipy:
pip install -U numpypip install -U pil/pillowpip install -U scipy
Windows的最佳选择是使用anaconda。
我认为在conda中已经安装了pip。这样可以解决您的系统版本问题。
In [1]: from PIL import ImageIn [2]: import scipy.ndimage as spndIn [3]: x = spnd.imread('ppuf100x91.gif')In [4]: print x[[255 255 255 ..., 255 255 255] [255 255 255 ..., 255 255 255] [255 255 255 ..., 255 255 255] ..., [255 255 255 ..., 255 255 255] [255 255 255 ..., 255 255 255] [255 255 255 ..., 255 255 255]]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)