ESOD: Efficient Small Object Detection on High-Resolution Images
Kai Liu, Zhihang Fu, Sheng Jin, Ze Chen, Fan Zhou, Rongxin Jiang, Yaowu Chen, Jieping Ye
TL;DR
This paper tackles the challenge of detecting small objects in high-resolution images without the heavy cost of simply enlarging inputs. It introduces ESOD, a plug-in framework that performs feature-level object-seeking (ObjSeeker), adaptive patch-slicing (AdaSlicer), and sparse detection (SparseHead) within the detector pipeline, making it applicable to both CNN and ViT backbones. The approach leverages a class-agnostic objectness mask and adaptive feature patches to discard background regions, achieving substantial AP gains while reducing GFLOPs, as demonstrated on VisDrone, UAVDT, and TinyPerson. By exploiting high-resolution inputs more efficiently, ESOD enables robust small-object detection in realistic settings with improved speed and reduced memory usage; future work includes further ViT-specific optimizations and broader hardware deployment.
Abstract
Enlarging input images is a straightforward and effective approach to promote small object detection. However, simple image enlargement is significantly expensive on both computations and GPU memory. In fact, small objects are usually sparsely distributed and locally clustered. Therefore, massive feature extraction computations are wasted on the non-target background area of images. Recent works have tried to pick out target-containing regions using an extra network and perform conventional object detection, but the newly introduced computation limits their final performance. In this paper, we propose to reuse the detector's backbone to conduct feature-level object-seeking and patch-slicing, which can avoid redundant feature extraction and reduce the computation cost. Incorporating a sparse detection head, we are able to detect small objects on high-resolution inputs (e.g., 1080P or larger) for superior performance. The resulting Efficient Small Object Detection (ESOD) approach is a generic framework, which can be applied to both CNN- and ViT-based detectors to save the computation and GPU memory costs. Extensive experiments demonstrate the efficacy and efficiency of our method. In particular, our method consistently surpasses the SOTA detectors by a large margin (e.g., 8% gains on AP) on the representative VisDrone, UAVDT, and TinyPerson datasets. Code is available at https://github.com/alibaba/esod.
