我想从文件夹中加载所有图像并对这些图像进行预测
这就是我尝试过的
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))
答案 0 :(得分:0)
您已经用字符串覆盖了image
变量,而不是将其保留在keras.preprocessing.image
模块中。如果您这样做,将会发生这种情况:
from keras.preprocessing import image
然后将image
设置为任何值。请注意将变量命名为与程序包或模块相同。