计算机视觉系列-轻松掌握 MMDetection 中常用算法 :RetinaNet(四)

计算机视觉系列-轻松掌握 MMDetection 中常用算法 :RetinaNet(四)

BBox Assigner

计算得到输出特征图上面每个点对应的原图 anchor 坐标后,就可以和ground truth 信息计算每个 anchor 的正负样本属性

配置:

   assigner=dict(
            type='MaxIoUAssigner',
            pos_iou_thr=0.5,
            neg_iou_thr=0.4,
            min_pos_iou=0

猜你喜欢

转载自blog.csdn.net/duan_zhihua/article/details/125124930