yjh0410 1 год назад
Родитель
Сommit
12b92935ca
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      utils/box_ops.py

+ 0 - 5
utils/box_ops.py

@@ -11,14 +11,12 @@ def box_cxcywh_to_xyxy(x):
          (x_c + 0.5 * w), (y_c + 0.5 * h)]
     return torch.stack(b, dim=-1)
 
-
 def box_xyxy_to_cxcywh(x):
     x0, y0, x1, y1 = x.unbind(-1)
     b = [(x0 + x1) / 2, (y0 + y1) / 2,
          (x1 - x0), (y1 - y0)]
     return torch.stack(b, dim=-1)
 
-
 def rescale_bboxes(bboxes, origin_img_size, cur_img_size, deltas=None):
     origin_h, origin_w = origin_img_size
     cur_img_h, cur_img_w = cur_img_size
@@ -41,7 +39,6 @@ def rescale_bboxes(bboxes, origin_img_size, cur_img_size, deltas=None):
 
     return bboxes
 
-
 def bbox2dist(anchor_points, bbox, reg_max):
     '''Transform bbox(xyxy) to dist(ltrb).'''
     x1y1, x2y2 = torch.split(bbox, 2, -1)
@@ -67,7 +64,6 @@ def box_iou(boxes1, boxes2):
     iou = inter / union
     return iou, union
 
-
 def generalized_box_iou(boxes1, boxes2):
     """
     Generalized IoU from https://giou.stanford.edu/
@@ -91,7 +87,6 @@ def generalized_box_iou(boxes1, boxes2):
 
     return iou - (area - union) / area
 
-
 def get_ious(bboxes1,
              bboxes2,
              box_mode="xyxy",