SSD的Matching Strategy

SSD的Matching Strategy涉及两个步骤:首先,每个ground truth框与最佳IoU的默认框匹配,确保每个gt框对应一个anchor;其次,选择IoU大于阈值(0.5)的默认框与gt匹配,简化学习问题。SSD-Tensorflow实现中,阈值过滤在后续步骤完成。
摘要由CSDN通过智能技术生成

在计算得到anchor之后, 需要将anchor与ground truth(gt)的bbox给绑定起来, 也就是Matching。
paper里说matching分为两步,逐层进行:
第一步:

We begin by matching each ground truth box to the default box with the best jaccard overlap. This is the matching approach used by the original MultiBox [7] and it ensures that each ground truth box has exactly one matched default box.

大意是为每个gt bbox找到一个最佳的anchor,保证每个gt bbox都有刚好有一个anchor来预测它。
代码: https://github.com/weiliu89/caffe/blob/ssd/src/caffe/util/bbox_util.cpp#L584

第二步:

Unlike MultiBox, we then match default boxes to any ground truth with jaccard overlap higher than a threshold (0.5). Adding these matches simplifies the learning problem: it allows the network to predict high confidences for multiple overlapping default boxes rather than req

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值