Object Detection and Bounding Boxes

:label:sec_bbox

In earlier sections (e.g., :numref:sec_alexnet—:numref:sec_googlenet), we introduced various models for image classification. In image classification tasks, we assume that there is only one major object in the image and we only focus on how to recognize its category. However, there are often multiple objects in the image of interest. We not only want to know their categories, but also their specific positions in the image. In computer vision, we refer to such tasks as object detection (or object recognition).

Object detection has been widely applied in many fields. For example, self-driving needs to plan traveling routes by detecting the positions of vehicles, pedestrians, roads, and obstacles in the captured video images. Besides, robots may use this technique to detect and localize objects of interest throughout its navigation of an environment. Moreover, security systems may need to detect abnormal objects, such as intruders or bombs.

In the next few sections, we will introduce several deep learning methods for object detection. We will begin with an introduction to positions (or locations) of objects.

```{.python .input} %matplotlib inline from d2l import mxnet as d2l from mxnet import image, npx, np

npx.set_np()

  1. ```{.python .input}
  2. #@tab pytorch
  3. %matplotlib inline
  4. from d2l import torch as d2l
  5. import torch

```{.python .input}

@tab tensorflow

%matplotlib inline from d2l import tensorflow as d2l import tensorflow as tf

  1. We will load the sample image to be used in this section. We can see that there is a dog on the left side of the image and a cat on the right.
  2. They are the two major objects in this image.
  3. ```{.python .input}
  4. d2l.set_figsize()
  5. img = image.imread('../img/catdog.jpg').asnumpy()
  6. d2l.plt.imshow(img);

```{.python .input}

@tab pytorch, tensorflow

d2l.set_figsize() img = d2l.plt.imread(‘../img/catdog.jpg’) d2l.plt.imshow(img);

  1. ## Bounding Boxes
  2. In object detection,
  3. we usually use a *bounding box* to describe the spatial location of an object.
  4. The bounding box is rectangular, which is determined by the $x$ and $y$ coordinates of the upper-left corner of the rectangle and the such coordinates of the lower-right corner.
  5. Another commonly used bounding box representation is the $(x, y)$-axis
  6. coordinates of the bounding box center, and the width and height of the box.
  7. Here we define functions to convert between these two
  8. representations:
  9. `box_corner_to_center` converts from the two-corner
  10. representation to the center-width-height presentation,
  11. and `box_center_to_corner` vice versa.
  12. The input argument `boxes` can be either a tensor of length 4,
  13. or a two-dimensional tensor of shape ($n$, 4), where $n$ is the number of bounding boxes.
  14. ```{.python .input}
  15. #@tab all
  16. #@save
  17. def box_corner_to_center(boxes):
  18. """Convert from (upper-left, lower-right) to (center, width, height)."""
  19. x1, y1, x2, y2 = boxes[:, 0], boxes[:, 1], boxes[:, 2], boxes[:, 3]
  20. cx = (x1 + x2) / 2
  21. cy = (y1 + y2) / 2
  22. w = x2 - x1
  23. h = y2 - y1
  24. boxes = d2l.stack((cx, cy, w, h), axis=-1)
  25. return boxes
  26. #@save
  27. def box_center_to_corner(boxes):
  28. """Convert from (center, width, height) to (upper-left, lower-right)."""
  29. cx, cy, w, h = boxes[:, 0], boxes[:, 1], boxes[:, 2], boxes[:, 3]
  30. x1 = cx - 0.5 * w
  31. y1 = cy - 0.5 * h
  32. x2 = cx + 0.5 * w
  33. y2 = cy + 0.5 * h
  34. boxes = d2l.stack((x1, y1, x2, y2), axis=-1)
  35. return boxes

We will define the bounding boxes of the dog and the cat in the image based on the coordinate information. The origin of the coordinates in the image is the upper-left corner of the image, and to the right and down are the positive directions of the $x$ and $y$ axes, respectively.

```{.python .input}

@tab all

Here bbox is the abbreviation for bounding box

dog_bbox, cat_bbox = [60.0, 45.0, 378.0, 516.0], [400.0, 112.0, 655.0, 493.0]

  1. We can verify the correctness of the two
  2. bounding box conversion functions by converting twice.
  3. ```{.python .input}
  4. #@tab all
  5. boxes = d2l.tensor((dog_bbox, cat_bbox))
  6. box_center_to_corner(box_corner_to_center(boxes)) == boxes

Let us draw the bounding boxes in the image to check if they are accurate. Before drawing, we will define a helper function bbox_to_rect. It represents the bounding box in the bounding box format of the matplotlib package.

```{.python .input}

@tab all

@save

def bbox_to_rect(bbox, color): “””Convert bounding box to matplotlib format.”””

  1. # Convert the bounding box (upper-left x, upper-left y, lower-right x,
  2. # lower-right y) format to the matplotlib format: ((upper-left x,
  3. # upper-left y), width, height)
  4. return d2l.plt.Rectangle(
  5. xy=(bbox[0], bbox[1]), width=bbox[2]-bbox[0], height=bbox[3]-bbox[1],
  6. fill=False, edgecolor=color, linewidth=2)
  1. After adding the bounding boxes on the image,
  2. we can see that the main outline of the two objects are basically inside the two boxes.
  3. ```{.python .input}
  4. #@tab all
  5. fig = d2l.plt.imshow(img)
  6. fig.axes.add_patch(bbox_to_rect(dog_bbox, 'blue'))
  7. fig.axes.add_patch(bbox_to_rect(cat_bbox, 'red'));

Summary

  • Object detection not only recognizes all the objects of interest in the image, but also their positions. The position is generally represented by a rectangular bounding box.
  • We can convert between two commonly used bounding box representations.

Exercises

  1. Find another image and try to label a bounding box that contains the object. Compare labeling bounding boxes and categories: which usually takes longer?
  2. Why is the innermost dimension of the input argument boxes of box_corner_to_center and box_center_to_corner always 4?

:begin_tab:mxnet Discussions :end_tab:

:begin_tab:pytorch Discussions :end_tab: