python中的image.load_img错误,Keras
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的image.load_img错误,Keras相关的知识,希望对你有一定的参考价值。
我有以下代码
from keras.preprocessing import image
test_image = image.load_img('roi.jpg', target_size = (64, 64),grayscale=True)
test_image = image.img_to_array(test_image)
test_image = np.expand_dims(test_image, axis = 0)
roi.jpg是保存在同一目录中的图像。执行后我得到以下错误
test_image = image.load_img('roi.jpg', target_size = (64, 64),grayscale=True)
File "C:ProgramDataAnaconda3libsite-packageskeraspreprocessingimage.py", line 345, in load_img raise ImportError('Could not import PIL.Image. ')
ImportError: Could not import PIL.Image. The use of `array_to_img` requires PIL.
请帮我解决这个错误。我用过windows 10
和python version : Python 3.6.3 :: Anaconda custom (64-bit)
答案
你需要PIL模块,尝试第一个尝试第二个
conda install PIL
conda install Pillow
或者如果PIL和Pillow都存在,请同时卸载并重新安装PIL
以上是关于python中的image.load_img错误,Keras的主要内容,如果未能解决你的问题,请参考以下文章