Daily Arxiv

This is a page that curates AI-related papers published worldwide.
All content here is summarized using Google Gemini and operated on a non-profit basis.
Copyright for each paper belongs to the authors and their institutions; please make sure to credit the source when sharing.

SBP-YOLO:A Lightweight Real-Time Model for Detecting Speed Bumps and Potholes

Created by
  • Haebom

Author

Chuanqi Liang, Jie Fu, Miao Yu, Lei Luo

Outline

This paper presents SBP-YOLO, a lightweight, fast detection framework for real-time speed bumps and potholes on roads, essential for predictive recognition of advanced suspension systems. Building on YOLOv11n, we integrate GhostConv and VoVGSCSPC modules into the backbone and neck to reduce computational complexity and enhance multi-scale semantic features. To improve small object detection, we introduce P2-level branching using the lightweight, high-efficiency detection head LEDH to mitigate computational overhead without compromising accuracy. We further improve localization accuracy and robustness through a hybrid learning strategy that combines NWD loss, backbone-level knowledge distillation, and Albumentations-based augmentation. Experimental results show that SBP-YOLO achieves 87.0% mAP, a 5.8% improvement over the YOLOv11n baseline model. After TensorRT FP16 quantization, it runs at 139.5 FPS on a Jetson AGX Xavier, demonstrating a 12.4% speedup over the P2-enhanced YOLOv11. These results demonstrate the effectiveness of the proposed method for fast and low-latency road condition recognition in embedded suspension control systems.

Takeaways, Limitations

Takeaways:
We demonstrate that real-time road condition recognition is possible in embedded systems using a lightweight YOLO-based model.
Effectively utilize modules such as GhostConv, VoVGSCSPC, and LEDH to simultaneously improve accuracy and speed.
Improve model robustness and accuracy through hybrid learning strategies.
It suggests applicability in practical applications such as advanced suspension systems.
Limitations:
Further validation of generalization performance is needed through performance evaluation on a limited dataset.
Lack of robustness assessment for various environmental conditions (weather, lighting, etc.).
Limited to performance evaluation on specific hardware (Jetson AGX Xavier), scalability to other platforms needs to be reviewed.
Lack of detailed description of specific implementation details of SBP-YOLO (e.g. hyperparameter settings).
👍