论文地址:FoveaBox: Beyond Anchor-based Object Detector

一篇anchor-free的检测论文

实现两点:
1、使用category-sensitive semantic map进行物体存在的预测,这点我个人觉得就是语义分割的思想
2、使用category-agnostic bounding box对目标的bounding box进行检测

[深度学习从入门到女装]FoveaBox: Beyond Anchor-based Object Detector
整体结构如上图所示,使用FPN作为backbone,然后对每层feature map进行预测

Scale Assignment

[深度学习从入门到女装]FoveaBox: Beyond Anchor-based Object Detector

Object Fovea

进行category-sensitive semantic map的预测的结果为H* W* K,其中H和W为feature map的size,K为预测种类的个数
对于gt的bounding box(x1,y1,x2,y2)(x_1,y_1,x_2,y_2),先对不同层的feature map进行缩放
[深度学习从入门到女装]FoveaBox: Beyond Anchor-based Object Detector
随后对feature map上的坐标使用参数σ1\sigma_1进行转换
[深度学习从入门到女装]FoveaBox: Beyond Anchor-based Object Detector
positive area Rpos=(x1,y1,x2,y2)R^{pos}=(x_1^{''},y_1^{''},x_2^{''},y_2^{''})RposR^{pos}中的每个cell都打上target class label
然后对于negative sample,对公式4使用σ2\sigma_2进行转换得到RnegR^{neg},整个nagative area是除去RnegR^{neg}以外的其他区域
使用focal loss

Box Prediction

[深度学习从入门到女装]FoveaBox: Beyond Anchor-based Object Detector

使用Smoth L1 loss

相关文章:

  • 2021-04-27
  • 2022-12-23
  • 2021-10-04
  • 2022-01-17
  • 2021-12-06
  • 2021-12-21
  • 2021-04-14
  • 2021-08-05
猜你喜欢
  • 2022-01-22
  • 2022-01-05
  • 2021-04-21
  • 2021-08-09
  • 2021-08-23
  • 2021-07-25
相关资源
相似解决方案