diff --git a/mmdet/datasets/pipelines/transforms.py b/mmdet/datasets/pipelines/transforms.py index e0cca25aa408def66033ea7f46fe4aa038b2fd73..fe1584dc3a8e0be16df85290cab7f04a38063d2a 100644 --- a/mmdet/datasets/pipelines/transforms.py +++ b/mmdet/datasets/pipelines/transforms.py @@ -581,8 +581,10 @@ class MinIoURandomCrop(object): selected from min_ious. Args: - min_ious (tuple): minimum IoU threshold - crop_size (tuple): Expected size after cropping, (h, w). + min_ious (tuple): minimum IoU threshold for all intersections with + bounding boxes + min_crop_size (float): minimum crop's size (i.e. h,w := a*h, a*w, + where a >= min_crop_size). """ def __init__(self, min_ious=(0.1, 0.3, 0.5, 0.7, 0.9), min_crop_size=0.3):