1

我已经使用图像和掩码训练了一个模型,并预测了一个图像。我预测的图像的形状是(1024,1024,3)

代码。

nueva_imagen = cv2.imread("../input/dataset/Training_dataset/Images/all_imgs/zanzibar_4_35_04.jpg")
print(nueva_imagen.shape)
nueva_imagen = cv2.resize(nueva_imagen,(256,256))
nueva_imagen = np.expand_dims(nueva_imagen,axis=0)
print(nueva_imagen.shape)
pred_img = model.predict(nueva_imagen)
print(pred_img.shape)
#pred_img = np.squeeze(pred_img,axis=0)
#print(pred_img.shape)

我添加另一个维度的原因是因为我的模型只拍摄 3 维图像。最后,我预测的图像形状(1,256,256,1) 现在正在阅读 cv2 文档,我无法显示 4 维的图像,所以这就是我所做的。

image_to_predict = _images[789]
mask_of_image = masks_arr[789]



pred_img = np.squeeze(pred_img,axis=0)
pred_img = np.squeeze(pred_img,axis=2)



fig = plt.figure()
fig.subplots_adjust(hspace=0.4, wspace=0.4)
ax = fig.add_subplot(1, 2, 1);plt.title("original image")
ax.imshow(image_to_predict)

#ax = fig.add_subplot(1, 2, 2);plt.title("mask")
#ax.imshow(mask_of_image)

ax = fig.add_subplot(1,2,2);plt.title("Predicted image")
ax.imshow(pred_img)

我删除了轴 0 和 3 上的尺寸以显示图像,但我得到的是紫色图像。这是预测的图像还是我做错了什么?

4

1 回答 1

0

您可能想要执行的一些检查(如果没有访问模型和图像很难判断):

  • 当您使用 OpenCV 加载图像时,图像存储为 BGR 而不是 RGB。如果您在加载 OpenCV 的图像上训练模型,这应该不是问题。但是如果你fit在一个目录上使用这个方法,你可能想要从 BGR 转换为 RGBcv2.cvtColor(nueva_imagen, cv2.COLOR_BGR2RGB)
  • 确保训练和预测之间的图像预处理相同。通常,检查它们是否具有 [0, 1] (作为浮点数)或 [0, 255] (作为 int)中的值
  • 使用 Matplotlib 关于 [0, 1] 值时也是如此
于 2019-10-01T10:01:24.000 回答