- Bounding Box Regression
It is a metric for measuring how well predicted bounding boxes captures objects. This is done by calculating the mean-squared error (MSE) between the coordinates of predicted bounding boxes and the ground truth bounding boxes.
- Calculation
The MSE between two bounding boxes, P and Q is given by:
Where 4 comes from the fact that we want the mean of 4 coordinates (x1, y1, x2, y2). For the two predictions we get the following MSE values:
'Deep Learning > Object Detection' 카테고리의 다른 글
R-CNN (0) | 2024.01.23 |
---|---|
(prerequisite-R-CNN) Non-maximum Suppression(NMS) (0) | 2024.01.23 |
(prerequisite-R-CNN) RoI(Region of Interest), Quantization, RoI Align (0) | 2024.01.20 |
(prerequisite-R-CNN) Selective Search (0) | 2024.01.19 |
IoU(Intersection over Union) (0) | 2023.06.14 |