快速小目标检测--Feature-Fused SSD: Fast Detection for Small Objects

Feature-Fused SSD: Fast Detection for Small Objects

本文针对小目标检测问题,对 SSD 模型进行了一个小的改进,将 contextual information 引入到 SSD 中 帮助SSD检测小目标。

contextual information 对于小目标的检测 重要性是不言而喻的。小目标在图像中 limited resolution and information,只能借助其周边信息了。

Feature-fused SSD architecture

这里主要还是讲不通尺度的特征图信息融合起来。

Which layers to combine? 但是具体融合哪个卷积层的特征图了

Because of SSD predicting small objects with its shallower layers,所以我们不用对应大目标的 deeper layers For choosing the proper feature fusion layers, effective receptive fields in different layers are explored with deconvolution method 对应上图中的小船,SSD中的 conv4_3 对应的 effective receptive field 是最合适的。 其他层的特征都不是很好

shallower layers 具有 contextual information ,但是它们没有 sematic information,deeper layers 具有 sematic information,所以我们需要将这两类信息融合起来。这里我们尝试了两种融合策略。 concatenation module and element-sum module

3.2 Concatenation Module

3.3 Element-Sum Module

4 Experimental Resultis Detection results of different fusion layers

Detection results of different number of kernels

Results on PASCAL VOC2007 test set (with IOU=0.5)

The running time illustration of different models

猜你喜欢

转载自blog.csdn.net/qq_36396104/article/details/83862915