A Modular Object Detection System for Humanoid Robots Using YOLO
Nicolas Pottier, Meng Cheng Lau
TL;DR
This work tackles the challenge of real-time vision for constrained humanoid robots by developing a modular YOLOv9-based perception module integrated with ROS1. It uses CPU-focused optimizations (frame skipping, input resizing, ONNX/OpenVINO conversion, and quantization) and a WebSocket bridge to bridge Python 3-based inference with ROS 1. The authors train task-specific lightweight models for FIRA Hurocup events and evaluate the system against a geometric baseline, demonstrating competitive precision and improved robustness in dynamic, cluttered environments, albeit at lower FPS. The results underscore the viability of deploying modern, data-driven object detectors on resource-limited robots and highlight a path toward hybrid perception pipelines that combine the strengths of both deep learning and traditional geometry for robust, real-time robotic perception.
Abstract
Within the field of robotics, computer vision remains a significant barrier to progress, with many tasks hindered by inefficient vision systems. This research proposes a generalized vision module leveraging YOLOv9, a state-of-the-art framework optimized for computationally constrained environments like robots. The model is trained on a dataset tailored to the FIRA robotics Hurocup. A new vision module is implemented in ROS1 using a virtual environment to enable YOLO compatibility. Performance is evaluated using metrics such as frames per second (FPS) and Mean Average Precision (mAP). Performance is then compared to the existing geometric framework in static and dynamic contexts. The YOLO model achieved comparable precision at a higher computational cost then the geometric model, while providing improved robustness.
