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

来源:互联网 发布:海康网络监控 编辑:程序博客网 时间:2024/06/03 18:23

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
这里写图片描述

阅读全文
0 0
原创粉丝点击