Object Detection With Deep Learning: A Review
Zhong-Qiu ZhaoPeng ZhengShou-tao XuXindong Wu
Systematizes the foundational architectures, optimization strategies, and practical training techniques of deep learning-based object detection while evaluating their performance across general benchmarks and specialized domains like face and pedestrian detection.
Deep learning has transformed object detection by replacing handcrafted features and shallow classifiers with convolutional networks that learn rich semantic representations directly from data. The review examines this shift across generic detection and three specialized tasks—salient-object, face, and pedestrian detection—because accurate localization and classification underpin applications such as autonomous driving, surveillance, and image understanding. Traditional sliding-window pipelines stagnated after 2010 because exhaustive candidate generation was inefficient and low-level descriptors could not bridge the semantic gap; the arrival of large-scale labeled sets and GPU training removed those barriers and enabled end-to-end learning.
The authors set out to map the principal architectures, training strategies, and performance trade-offs that have emerged since the 2014 R-CNN breakthrough, while also supplying benchmark comparisons and forward-looking guidance. They synthesize the literature on region-proposal and single-shot regression families, trace the evolution of backbone networks, and evaluate representative methods on PASCAL VOC, Microsoft COCO, FDDB, and Caltech Pedestrian data sets.
Region-proposal pipelines (R-CNN → Fast/Faster R-CNN → R-FCN, FPN, Mask R-CNN) deliver the highest accuracy by decoupling candidate generation from classification and bounding-box regression, yet they remain multi-stage and comparatively slow. Single-shot regressors (YOLO, SSD and variants) achieve real-time rates—often above 30 fps—by casting detection as a unified grid or anchor-based prediction task, at a modest cost in localization precision. Across both families, multi-scale feature pyramids, hard-negative mining, and joint optimization of classification and regression consistently raise mean average precision by 5–15 points; the same ingredients also improve robustness on small or occluded instances that dominate challenging data sets such as COCO. Face and pedestrian detectors further benefit from part-based or scale-adaptive extensions, while salient-object methods gain from multi-context and boundary-aware supervision.
These advances translate directly into deployable systems: Faster R-CNN and its descendants now underpin production pipelines that must balance accuracy against latency, and the review shows that careful backbone selection plus batch normalization can cut inference time by an order of magnitude without sacrificing more than a few points of mAP. At the same time, the gap between laboratory benchmarks and real-world conditions remains large; even the best reported figures on COCO hover well below 40 % mAP when strict localization is required.
Future progress hinges on three practical directions. First, scale-adaptive and context-aware architectures must be made end-to-end trainable so that small-object performance improves without exhaustive image pyramids. Second, weakly supervised and self-supervised pre-training schemes are needed to reduce reliance on costly bounding-box annotations. Third, compact, hardware-aware models—achieved through knowledge distillation, pruning, or training-from-scratch techniques such as DSOD—should be pursued to meet the latency and memory constraints of embedded platforms. The review itself is limited to publications available through mid-2018; subsequent work on transformers and 3-D sensing will require periodic re-evaluation, yet the core architectural lessons remain a reliable foundation for those extensions.
- Paper: Rich feature hierarchies for accurate object detection and semantic segmentation, Ross Girshick et al. (2014). Reading R-CNN provides the essential foundation on how convolutional neural networks were first successfully adapted to object detection using region proposals.
- Paper: Fast R-CNN, Ross B. Girshick (2015). Fast R-CNN builds directly upon the architecture of earlier region-based detectors while eliminating computational bottlenecks, serving as a core milestone reviewed in the source.
- Paper: Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks, Shaoqing Ren et al. (2015). Faster R-CNN introduces Region Proposal Networks to integrate proposal generation into the deep network itself, representing a key paradigm shift covered by the review.
- Paper: You Only Look Once: Unified, Real-Time Object Detection, Joseph Redmon et al. (2016). YOLO established the single-stage regression approach to real-time object detection that forms a major comparative category in the review.
- Paper: SSD: Single Shot MultiBox Detector, W. Liu et al. (2015). SSD pioneered the multi-scale default box architecture for single-shot detectors, which is extensively evaluated and contrasted in the source paper.
- Paper: Feature Pyramid Networks for Object Detection, Tsung-Yi Lin et al. (2017). Feature Pyramid Networks established the foundational multi-scale feature architecture that modern object detectors rely on to handle objects of varying sizes.
- Paper: End-to-End Object Detection with Transformers, Nicolas Carion et al. (2020). DETR extends the trajectory of object detection beyond traditional anchor-based frameworks by introducing end-to-end transformers, directly continuing the future directions discussed in the source.
- Paper: Deformable DETR: Deformable Transformers for End-to-End Object Detection, Xizhou Zhu et al. (2021). Deformable DETR improves upon initial transformer-based detectors by introducing efficient sparse attention mechanisms, continuing the evolution of end-to-end detection models.
- Paper: YOLOv7: Trainable Bag-of-Freebies Sets New State-of-the-Art for Real-Time Object Detectors, Chien-Yao Wang et al. (2023). YOLOv7 advances real-time object detection methodology through advanced training techniques and architectural scaling, continuing the YOLO lineage examined in the review.
