↓ 1 callersFunctionbox_candidates(box1, box2, wh_thr=2, ar_thr=100, area_thr=0.1, eps=1e-16)
ultralytics/yolo/data/dataloaders/v5augmentations.py:302
↓ 1 callersMethodbox_candidates(self, box1, box2, wh_thr=2, ar_thr=100, area_thr=0.1, eps=1e-16)
ultralytics/yolo/data/augment.py:370
↓ 1 callersFunctionclassify_albumentations(
augment=True,
size=224,
scale=(0.08, 1.0),
hflip=0.5,
vflip=0.0,
ultralytics/yolo/data/augment.py:691
↓ 1 callersFunctionclassify_albumentations(
augment=True,
size=224,
scale=(0.08, 1.0),
ratio=(0.75, 1.0 / 0.75), # 0.75
ultralytics/yolo/data/dataloaders/v5augmentations.py:310
↓ 1 callersFunctionclip_segments > It takes a list of line segments (x1,y1,x2,y2) and clips them to the image shape (height, width) Args: segments: a list of segments,
ultralytics/yolo/utils/ops.py:655
↓ 1 callersMethodget_pos_mask(self, pd_scores, pd_bboxes, gt_labels, gt_bboxes, anc_points, mask_gt)
ultralytics/yolo/utils/tal.py:111
↓ 1 callersMethodget_targets Args: gt_labels: (b, max_num_obj, 1) gt_bboxes: (b, max_num_obj, 4) target_gt_idx: (b, h*w) f
ultralytics/yolo/utils/tal.py:155
↓ 1 callersFunctionltwh2xywh > Convert nx4 boxes from [x1, y1, w, h] to [x, y, w, h] where xy1=top-left, xy=center Args: x: the input tensor
ultralytics/yolo/utils/ops.py:434
↓ 1 callersFunctionltwh2xyxy > It converts the bounding box from [x1, y1, w, h] to [x1, y1, x2, y2] where xy1=top-left, xy2=bottom-right Args: x: the input ima
ultralytics/yolo/utils/ops.py:447