|
|
import torch |
|
|
|
|
|
|
|
|
def compute_iou_torch(gt_boxes, anchors): |
|
|
"""Compute IoU between gt_boxes and anchors. |
|
|
gt_boxes: shape [N, 2] |
|
|
anchors: shape [M, 2] |
|
|
""" |
|
|
|
|
|
N = gt_boxes.shape[0] |
|
|
M = anchors.shape[0] |
|
|
|
|
|
gt_areas = (gt_boxes[:, 1] - gt_boxes[:, 0]).view(1, N) |
|
|
anchors_areas = (anchors[:, 1] - anchors[:, 0]).view(M, 1) |
|
|
|
|
|
boxes = anchors.view(M, 1, 2).repeat(1, N, 1) |
|
|
query_boxes = gt_boxes.view(1, N, 2).repeat(M, 1, 1) |
|
|
|
|
|
inter_max = torch.min(boxes[..., 1], query_boxes[..., 1]) |
|
|
inter_min = torch.max(boxes[..., 0], query_boxes[..., 0]) |
|
|
inter = (inter_max - inter_min).clamp(min=0) |
|
|
|
|
|
scores = inter / (anchors_areas + gt_areas - inter).clamp(min=1e-6) |
|
|
return scores.to(anchors.dtype) |
|
|
|
|
|
|
|
|
def compute_ioa_torch(gt_boxes, anchors): |
|
|
"""Compute Intersection between gt_boxes and anchors. |
|
|
gt_boxes: np.array shape [N, 2] |
|
|
anchors: np.array shape [M, 2] |
|
|
""" |
|
|
|
|
|
N = gt_boxes.shape[0] |
|
|
M = anchors.shape[0] |
|
|
|
|
|
anchors_areas = (anchors[:, 1] - anchors[:, 0]).view(M, 1) |
|
|
|
|
|
boxes = anchors.view(M, 1, 2).repeat(1, N, 1) |
|
|
query_boxes = gt_boxes.view(1, N, 2).repeat(M, 1, 1) |
|
|
|
|
|
inter_max = torch.min(boxes[..., 1], query_boxes[..., 1]) |
|
|
inter_min = torch.max(boxes[..., 0], query_boxes[..., 0]) |
|
|
inter = (inter_max - inter_min).clamp(min=0) |
|
|
|
|
|
scores = inter / anchors_areas.clamp(min=1e-6) |
|
|
return scores.to(anchors.dtype) |
|
|
|
|
|
|
|
|
def compute_batched_iou_torch(gt_boxes, anchors): |
|
|
"""Compute IoU between gt_boxes and anchors. |
|
|
gt_boxes: shape [B, N, 2] |
|
|
anchors: shape [B, N, 2] |
|
|
gt_boxes has been aligned with anchors |
|
|
""" |
|
|
bs = gt_boxes.shape[0] |
|
|
N = gt_boxes.shape[1] |
|
|
|
|
|
gt_areas = (gt_boxes[..., 1] - gt_boxes[..., 0]).view(bs, N) |
|
|
anchors_areas = (anchors[..., 1] - anchors[..., 0]).view(bs, N) |
|
|
|
|
|
inter_max = torch.min(anchors[..., 1], gt_boxes[..., 1]) |
|
|
inter_min = torch.max(anchors[..., 0], gt_boxes[..., 0]) |
|
|
inter = (inter_max - inter_min).clamp(min=0) |
|
|
|
|
|
scores = inter / (anchors_areas + gt_areas - inter).clamp(min=1e-6) |
|
|
return scores.to(anchors.dtype) |
|
|
|
|
|
|
|
|
def compute_giou_torch(gt_boxes, anchors): |
|
|
"""Compute GIoU between gt_boxes and anchors. |
|
|
gt_boxes: shape [N, 2] |
|
|
anchors: shape [M, 2] |
|
|
""" |
|
|
|
|
|
N = gt_boxes.shape[0] |
|
|
M = anchors.shape[0] |
|
|
|
|
|
gt_areas = (gt_boxes[:, 1] - gt_boxes[:, 0]).view(1, N) |
|
|
anchors_areas = (anchors[:, 1] - anchors[:, 0]).view(M, 1) |
|
|
|
|
|
boxes = anchors.view(M, 1, 2).repeat(1, N, 1) |
|
|
query_boxes = gt_boxes.view(1, N, 2).repeat(M, 1, 1) |
|
|
|
|
|
inter_max = torch.min(boxes[..., 1], query_boxes[..., 1]) |
|
|
inter_min = torch.max(boxes[..., 0], query_boxes[..., 0]) |
|
|
inter = (inter_max - inter_min).clamp(min=0) |
|
|
|
|
|
union = anchors_areas + gt_areas - inter |
|
|
|
|
|
iou = inter / union.clamp(min=1e-6) |
|
|
|
|
|
x1_enclosing = torch.min(boxes[..., 0], query_boxes[..., 0]) |
|
|
x2_enclosing = torch.max(boxes[..., 1], query_boxes[..., 1]) |
|
|
area = (x2_enclosing - x1_enclosing).clamp(min=1e-7) |
|
|
|
|
|
|
|
|
giou = iou - (area - union) / (area + 1e-6) |
|
|
return giou.to(anchors.dtype) |
|
|
|
|
|
|
|
|
def compute_diou_torch(gt_boxes, anchors, eps=1e-7): |
|
|
""" |
|
|
Compute DIoU (Distance Intersection over Union) between pairs of 1D boxes. |
|
|
|
|
|
Encourages maximizing the overlap and minimizing the distance between the centers of the boxes. |
|
|
|
|
|
Tensor broadcasting and repeating are used to efficiently compute overlaps and distances |
|
|
between all pairs of boxes. |
|
|
|
|
|
Args: |
|
|
gt_boxes (torch.Tensor): Ground truth boxes, shape (N, 2) |
|
|
anchors (torch.Tensor): Anchor boxes, shape (M, 2) |
|
|
eps (float, optional): A small number to prevent division by zero. |
|
|
Returns: |
|
|
torch.Tensor: The DIoU between each pair of boxes, shape (M, N) |
|
|
""" |
|
|
|
|
|
N = gt_boxes.shape[0] |
|
|
M = anchors.shape[0] |
|
|
|
|
|
gt_areas = (gt_boxes[:, 1] - gt_boxes[:, 0]).view(1, N) |
|
|
anchors_areas = (anchors[:, 1] - anchors[:, 0]).view(M, 1) |
|
|
|
|
|
boxes = anchors.view(M, 1, 2).repeat(1, N, 1) |
|
|
query_boxes = gt_boxes.view(1, N, 2).repeat(M, 1, 1) |
|
|
|
|
|
|
|
|
inter_max = torch.min(boxes[..., 1], query_boxes[..., 1]) |
|
|
inter_min = torch.max(boxes[..., 0], query_boxes[..., 0]) |
|
|
inter = (inter_max - inter_min).clamp(min=0) |
|
|
|
|
|
|
|
|
union = anchors_areas + gt_areas - inter |
|
|
|
|
|
|
|
|
iou = inter / union.clamp(min=eps) |
|
|
|
|
|
|
|
|
x1_enclosing = torch.min(boxes[..., 0], query_boxes[..., 0]) |
|
|
x2_enclosing = torch.max(boxes[..., 1], query_boxes[..., 1]) |
|
|
area = x2_enclosing - x1_enclosing |
|
|
|
|
|
|
|
|
c1 = (boxes[..., 0] + boxes[..., 1]) / 2 |
|
|
c2 = (query_boxes[..., 0] + query_boxes[..., 1]) / 2 |
|
|
c_dist = (c2 - c1).abs() |
|
|
|
|
|
|
|
|
diou = iou - c_dist * c_dist / (area * area).clamp(min=eps) |
|
|
return diou.to(anchors.dtype) |
|
|
|