【问题标题】:Why does my TensorFlow object_detection model incorrectly train on BW images?为什么我的 TensorFlow object_detection 模型在 BW 图像上训练不正确?
【发布时间】:2019-06-27 12:28:41
【问题描述】:

我想在黑白图像上训练我的 TensorFlow object_detection 模型,因为我尝试检测的对象不需要颜色。但是,当我在黑白图像上训练我的模型时,每当我尝试使用我改编的图像测试脚本对其进行测试时,都会出现以下错误: ValueError: 无法为形状为 '(?, ?, ?, 3)' 的张量“image_tensor:0”提供形状 (1, 1080, 1920) 的值

我不能说太多,但我的模型应该检测管道的畸形,并且它基于 ssd_mobilenet_v1_coco_2018_01_28。大多数畸形都是通过改变的形状在视觉上检测到的,这就是为什么颜色会妨碍物体检测过程的原因。 (至少我是这么认为的,我认为只有检测形状才能提高准确性)。

TensorBoard 模型图

我尝试将图像重塑为 (1, 1080, 1920, 3),1080x1920 是我的图像分辨率。

代码如下:

def load_image_into_numpy_array(image):


(im_width, im_height) = image.size
  return np.array(image.getdata()).reshape(
      (im_height, im_width, 3)).astype(np.uint8)


# # Detection

# In[18]:


# For the sake of simplicity we will use only 2 images:
# image1.jpg
# image2.jpg
# If you want to test the code with your images, just add path to the images to the TEST_IMAGE_PATHS.
PATH_TO_TEST_IMAGES_DIR = FLAGS.image_path
TEST_IMAGE_PATHS = [ os.path.join(PATH_TO_TEST_IMAGES_DIR, 'img ({}).jpeg'.format(i)) for i in range(1, len(os.listdir(FLAGS.image_path))) ]

# Size, in inches, of the output images.
IMAGE_SIZE = (24, 16)


# In[ ]:





# In[19]:


def run_inference_for_single_image(image, graph):
  with graph.as_default():
    with tf.Session() as sess:
      # Get handles to input and output tensors
      ops = tf.get_default_graph().get_operations()
      all_tensor_names = {output.name for op in ops for output in op.outputs}
      tensor_dict = {}
      for key in [
          'num_detections', 'detection_boxes', 'detection_scores',
          'detection_classes', 'detection_masks'
      ]:
        tensor_name = key + ':0'
        if tensor_name in all_tensor_names:
          tensor_dict[key] = tf.get_default_graph().get_tensor_by_name(
              tensor_name)
      if 'detection_masks' in tensor_dict:
        # The following processing is only for single image
        detection_boxes = tf.squeeze(tensor_dict['detection_boxes'], [0])
        detection_masks = tf.squeeze(tensor_dict['detection_masks'], [0])
        # Reframe is required to translate mask from box coordinates to image coordinates and fit the image size.
        real_num_detection = tf.cast(tensor_dict['num_detections'][0], tf.int32)
        detection_boxes = tf.slice(detection_boxes, [0, 0], [real_num_detection, -1])
        detection_masks = tf.slice(detection_masks, [0, 0, 0], [real_num_detection, -1, -1])
        detection_masks_reframed = utils_ops.reframe_box_masks_to_image_masks(
            detection_masks, detection_boxes, image.shape[1], image.shape[2])
        detection_masks_reframed = tf.cast(
            tf.greater(detection_masks_reframed, 0.5), tf.uint8)
        # Follow the convention by adding back the batch dimension
        tensor_dict['detection_masks'] = tf.expand_dims(
            detection_masks_reframed, 0)
      image_tensor = tf.get_default_graph().get_tensor_by_name('image_tensor:0')

      # Run inference
      output_dict = sess.run(tensor_dict,
                             feed_dict={image_tensor: image})

      # all outputs are float32 numpy arrays, so convert types as appropriate
      output_dict['num_detections'] = int(output_dict['num_detections'][0])
      output_dict['detection_classes'] = output_dict[
          'detection_classes'][0].astype(np.int64)
      output_dict['detection_boxes'] = output_dict['detection_boxes'][0]
      output_dict['detection_scores'] = output_dict['detection_scores'][0]
      if 'detection_masks' in output_dict:
        output_dict['detection_masks'] = output_dict['detection_masks'][0]
  return output_dict


# In[20]:


for image_path in TEST_IMAGE_PATHS:
  print('Showing image')
  #image = Image.open(image_path)
  image_np = cv2.imread(image_path)
  image_np = cv2.cvtColor(image_np, cv2.COLOR_BGR2RGB) #This line and the one above make it work with color images
  #image_np = cv2.imread(image_path, cv2.COLOR_BGR2GRAY) #This line makes it break
  # the array based representation of the image will be used later in order to prepare the
  # result image with boxes and labels on it.
  #image_np = load_image_into_numpy_array(image)
  # Expand dimensions since the model expects images to have shape: [1, None, None, 3]
  image_np_expanded = np.expand_dims(image_np, axis=0)
  # Actual detection.
  output_dict = run_inference_for_single_image(image_np_expanded, detection_graph)
  # Visualization of the results of a detection.
  vis_util.visualize_boxes_and_labels_on_image_array(
      image_np,
      output_dict['detection_boxes'],
      output_dict['detection_classes'],
      output_dict['detection_scores'],
      category_index,
      instance_masks=output_dict.get('detection_masks'),
      use_normalized_coordinates=True,
      line_thickness=8)
  #plt.figure(figsize=IMAGE_SIZE)
  #plt.imshow(image_np)

  cv2.imshow('Image', image_np)
  cv2.waitKey(0)

这是整个错误:

Traceback (most recent call last):
  File "image.py", line 212, in <module>
    output_dict = run_inference_for_single_image(image_np_expanded, detection_graph)
  File "image.py", line 185, in run_inference_for_single_image
    feed_dict={image_tensor: image})
  File "C:\Users\Charles.averill\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\client\session.py", line 950, in run
    run_metadata_ptr)
  File "C:\Users\Charles.averill\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\client\session.py", line 1149, in _run
    str(subfeed_t.get_shape())))
ValueError: Cannot feed value of shape (1, 1080, 1920) for Tensor 'image_tensor:0', which has shape '(?, ?, ?, 3)'

为什么会这样?我似乎无法通过搜索互联网确定答案。

【问题讨论】:

  • 能否添加模型摘要,并显示错误的堆栈跟踪?
  • 我还是看不出你的模型是什么样子的
  • @BlueRineS 我不太清楚你的意思,但我已经在 TensorBoard 显示的图表中添加了
  • 您的网络模型。层基本上..
  • @BlueRineS 我基于 ssd_mobilenet_v1_coco_2018_01_28 模型

标签: python opencv tensorflow


【解决方案1】:

您的输入图像是灰度图像,因此您应该在运行模型时进行适当的更改。看看这段代码:

for image_path in TEST_IMAGE_PATHS:
  print('Showing image')
  #image = Image.open(image_path)
  image_np = cv2.imread(image_path)
  image_np = cv2.cvtColor(image_np, cv2.COLOR_BGR2RGB) #This line and the one above make it work with color images

您的输入图像不是 BGR 格式,因此您无法像在此处的代码中那样将此图像转换为 RGB:

image_np = cv2.cvtColor(image_np, cv2.COLOR_BGR2RGB)

将上面的代码替换为

for image_path in TEST_IMAGE_PATHS:
  print('Showing image')
  #image = Image.open(image_path)
  image_np = cv2.imread(image_path)
  image_np = cv2.cvtColor(image_np, cv2.COLOR_GRAY2RGB) 

【讨论】:

  • 谢谢!我很失望我完全错过了这一点,但目标结果图像也是灰度的,所以我只是做了 image_np = cv2.imread(image_path)
  • @CharlesAverill Google 在他们的错误报告系统上有很多工作要做。对于一个微小的错误,谷歌使用了几乎无法理解的难懂的行话。很高兴我的解决方案对您有所帮助。
猜你喜欢
  • 2021-10-03
  • 1970-01-01
  • 2017-03-27
  • 2021-03-23
  • 1970-01-01
  • 2020-10-05
  • 2020-12-11
  • 2017-12-11
  • 2019-06-08
相关资源
最近更新 更多