【发布时间】:2018-06-28 20:19:26
【问题描述】:
我指的是 Google 的 Tensor-Flow 对象检测 API。我已经成功地训练和测试了这些对象。我的问题是在测试后我得到输出图像,在对象周围绘制了框,我如何获得这些框的 csv 坐标?测试代码可以在 (https://github.com/tensorflow/models/blob/master/research/object_detection/object_detection_tutorial.ipynb) 上找到
如果我看到辅助代码,它会将图像加载到 numpy 数组中:
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)
在检测中,它采用这个图像数组并给出如下绘制的框输出
with detection_graph.as_default():
with tf.Session(graph=detection_graph) as sess:
# Definite input and output Tensors for detection_graph
image_tensor = detection_graph.get_tensor_by_name('image_tensor:0')
# Each box represents a part of the image where a particular object was detected.
detection_boxes = detection_graph.get_tensor_by_name('detection_boxes:0')
# Each score represent how level of confidence for each of the objects.
# Score is shown on the result image, together with the class label.
detection_scores = detection_graph.get_tensor_by_name('detection_scores:0')
detection_classes = detection_graph.get_tensor_by_name('detection_classes:0')
num_detections = detection_graph.get_tensor_by_name('num_detections:0')
for image_path in TEST_IMAGE_PATHS:
image = Image.open(image_path)
# 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.
(boxes, scores, classes, num) = sess.run(
[detection_boxes, detection_scores, detection_classes, num_detections],
feed_dict={image_tensor: image_np_expanded})
# Visualization of the results of a detection.
vis_util.visualize_boxes_and_labels_on_image_array(
image_np,
np.squeeze(boxes),
np.squeeze(classes).astype(np.int32),
np.squeeze(scores),
category_index,
use_normalized_coordinates=True,
line_thickness=8)
plt.figure(figsize=IMAGE_SIZE)
plt.imshow(image_np)
我想将这些绿色框的坐标存储在一个 csv 文件中。有什么方法可以做到这一点?
【问题讨论】:
-
它将值存储在一个名为“boxes”的变量中。我输出变量“盒子”的结果。图3.6442898C-01 7.64498098C-01 7.6442898C-01 7.6442898C-01 7.6442898CS-01 7.64429898CS-01 7.648989898C-01 7.64429098C-01 7.6442498C-01] e-02 9.45716262e-01] 这些值对我来说没有意义,我们可以从这些数字中提取数据吗?
标签: python-3.x tensorflow computer-vision deep-learning object-detection