论文地址:FoveaBox: Beyond Anchor-based Object Detector
一篇anchor-free的检测论文
实现两点:
1、使用category-sensitive semantic map进行物体存在的预测,这点我个人觉得就是语义分割的思想
2、使用category-agnostic bounding box对目标的bounding box进行检测
整体结构如上图所示,使用FPN作为backbone,然后对每层feature map进行预测
Scale Assignment
Object Fovea
进行category-sensitive semantic map的预测的结果为H* W* K,其中H和W为feature map的size,K为预测种类的个数
对于gt的bounding box,先对不同层的feature map进行缩放
随后对feature map上的坐标使用参数进行转换
positive area ,中的每个cell都打上target class label
然后对于negative sample,对公式4使用进行转换得到,整个nagative area是除去以外的其他区域
使用focal loss
Box Prediction
使用Smoth L1 loss