FSSD: Feature Fusion Single Shot Multibox Detector

Zuoxin Li,Lu Yang,Fuqiang Zhou
2024-02-23
Abstract:SSD (Single Shot Multibox Detector) is one of the best object detection algorithms with both high accuracy and fast speed. However, SSD's feature pyramid detection method makes it hard to fuse the features from different scales. In this paper, we proposed FSSD (Feature Fusion Single Shot Multibox Detector), an enhanced SSD with a novel and lightweight feature fusion module which can improve the performance significantly over SSD with just a little speed drop. In the feature fusion module, features from different layers with different scales are concatenated together, followed by some down-sampling blocks to generate new feature pyramid, which will be fed to multibox detectors to predict the final detection results. On the Pascal VOC 2007 test, our network can achieve 82.7 mAP (mean average precision) at the speed of 65.8 FPS (frame per second) with the input size 300$\times$300 using a single Nvidia 1080Ti GPU. In addition, our result on COCO is also better than the conventional SSD with a large margin. Our FSSD outperforms a lot of state-of-the-art object detection algorithms in both aspects of accuracy and speed. Code is available at <a class="link-external link-https" href="https://github.com/lzx1413/CAFFE_SSD/tree/fssd" rel="external noopener nofollow">this https URL</a>.
Computer Vision and Pattern Recognition
What problem does this paper attempt to address?
The paper aims to address the issues present in single-stage object detection algorithms (such as SSD) when detecting objects of different scales, particularly the poor performance in small object detection. Specifically, the paper proposes an enhanced version of SSD—FSSD (Feature Fusion Single Shot Multibox Detector), whose core contribution lies in introducing a novel and lightweight feature fusion module. This module can significantly improve detection accuracy, especially for small objects, while incurring only a slight speed loss. By testing on the Pascal VOC 2007 dataset, FSSD can achieve an average precision (mAP) of 82.7% with a speed of 65.8 FPS. Additionally, on the COCO dataset, FSSD also outperforms the traditional SSD. Overall, FSSD surpasses many existing state-of-the-art object detection algorithms in both accuracy and speed.