str'对象没有属性'load_img'

时间:2019-05-27 18:12:28

标签: image-processing keras multilabel-classification loadimage

我想从文件夹中加载所有图像并对这些图像进行预测

这就是我尝试过的

    images = []
    folder_path="C:/Users/Harsh/Desktop/Ornithopter/anv/train/images/"
    for img in os.listdir(folder_path):
     img = image.load_img(img, target_size=(img_width, img_height))
     img = img.img_to_array(img)
     img = np.expand_dims(img, axis=0)
     images.append(img) 

上面提到的错误在线上出现 img = image.load_img(img, target_size=(img_width, img_height))

1 个答案:

答案 0 :(得分:0)

您已经用字符串覆盖了image变量,而不是将其保留在keras.preprocessing.image模块中。如果您这样做,将会发生这种情况:

from keras.preprocessing import image

然后将image设置为任何值。请注意将变量命名为与程序包或模块相同。