1

The computed masks by Mask R-CNN are of fixed size $m \times m$ each. How are they projected back to the image?

orbit
  • 21
  • 2

1 Answers1

0

Each computed mask is simply resized to the corresponding computed bounding-box. For example, using OpenCV:

mask = cv2.resize(mask, (bboxW, bboxH), interpolation=cv2.INTER_NEAREST)

Then, after converting it to a binary mask by thresholding it, you can overlay this mask on the input image using the coordinates of the corresponding computed bounding-box.

See here for more details.

kuzand
  • 91
  • 5