Yolo ros
Ultralytics YOLOv8, YOLOv9, YOLOv10, YOLOv11, YOLOv12 for ROS 2
ROS 2 wrap for YOLO models from [Ultralytics](https://github.com/ultralytics/ultralytics) to perform object detection and tracking, instance segmentation, human pose estimation and Oriented Bounding Box (OBB). There are also 3D versions of object detection, including instance segmentation, and human pose estimation based on depth images. The project is written primarily in Python, distributed under the GNU General Public License v3.0 license, first published in 2023. It has gained significant community traction with 1,080 stars and 258 forks on GitHub. Key topics include: 3d-human-pose-estimation, 3d-object-detection, human-pose-estimation, instance-segmentation, obb.
yolo_ros
ROS 2 wrap for YOLO models from Ultralytics to perform object detection and tracking, instance segmentation, human pose estimation and Oriented Bounding Box (OBB). There are also 3D versions of object detection, including instance segmentation, and human pose estimation based on depth images.
<div align="center">| ROS 2 Distro | Branch | Build status | Docker Image |
|---|---|---|---|
| Humble | main | ||
| Iron | main | ||
| Jazzy | main | ||
| Kilted | main | ||
| Lyrical | main | ||
| Rolling | main |
Table of Contents
Installation
shell# Clone this repo cd ~/ros2_ws/src git clone https://github.com/mgonzs13/yolo_ros.git # Install uv and python dependencies curl -LsSf https://astral.sh/uv/install.sh | sh source ~/.bashrc cd ~/ros2_ws/src/yolo_ros uv sync # Install rosdep dependencies and build cd ~/ros2_ws rosdep install --from-paths src --ignore-src -r -y colcon build && source install/setup.bash
Docker
Build the yolo_ros docker.
shelldocker build -t yolo_ros .
Run the docker container. If you want to use CUDA, you have to install the NVIDIA Container Tollkit and add --gpus all.
shelldocker run -it --rm --gpus all yolo_ros
Models
The compatible models for yolo_ros are the following:
Usage
<details> <summary>Click to expand</summary>YOLOv5
shellros2 launch yolo_bringup yolov5.launch.py
YOLOv8
shellros2 launch yolo_bringup yolov8.launch.py
YOLOv9
shellros2 launch yolo_bringup yolov9.launch.py
YOLOv10
shellros2 launch yolo_bringup yolov10.launch.py
YOLOv11
shellros2 launch yolo_bringup yolov11.launch.py
YOLOv12
shellros2 launch yolo_bringup yolov12.launch.py
YOLO-World
shellros2 launch yolo_bringup yolo-world.launch.py
YOLOE
</details> <p align="center"> <img src="./docs/rqt_graph_yolov8.png" width="100%" /> </p>shellros2 launch yolo_bringup yoloe.launch.py
Topics
- /yolo/detections: Objects detected by YOLO using the RGB images. Each object contains a bounding box and a class name. It may also include a mark or a list of keypoints.
- /yolo/tracking: Objects detected and tracked from YOLO results. Each object is assigned a tracking ID.
- /yolo/detections_3d: 3D objects detected. YOLO results are used to crop the depth images to create the 3D bounding boxes and 3D keypoints.
- /yolo/debug_image: Debug images showing the detected and tracked objects. They can be visualized with rviz2.
Services
- /yolo/enable: Service to enable or disable the detection node. Accepts a boolean value (True/False).
- /yolo/set_classes (YOLOWorld only): Service to dynamically set the detection classes. This service is only available when using the YOLO-World model and allows you to update the list of object classes the model should detect without restarting the node.
Parameters
These are the parameters from the yolo.launch.py, used to launch all models. Check out the Ultralytics page for more details.
- model_type: Ultralytics model type (default: YOLO)
- model: YOLO model (default: yolov8m.pt)
- tracker: Tracker file (default: bytetrack.yaml)
- device: GPU/CUDA (default: cuda:0)
- fuse_model: Whether to fuse the YOLO model for inference optimization (default: False)
- yolo_encoding: Encoding to convert input image before using YOLO (default: bgr8)
- enable: Whether to start YOLO enabled (default: True)
- threshold: Detection threshold (default: 0.5)
- iou: Intersection Over Union (IoU) threshold for Non-Maximum Suppression (NMS) (default: 0.7)
- imgsz_height: Image height for inference (default: 480)
- imgsz_width: Image width for inference (default: 640)
- half: Whether to enable half-precision (FP16) inference speeding up model inference with minimal impact on accuracy (default: False)
- max_det: Maximum number of detections allowed per image (default: 300)
- augment: Whether to enable test-time augmentation (TTA) for predictions improving detection robustness at the cost of speed (default: False)
- agnostic_nms: Whether to enable class-agnostic Non-Maximum Suppression (NMS) merging overlapping boxes of different classes (default: False)
- retina_masks: Whether to use high-resolution segmentation masks if available in the model, enhancing mask quality for segmentation (default: False)
- input_image_topic: Camera topic of RGB images (default: /camera/rgb/image_raw)
- image_reliability: Reliability for the image topic: 0=system default, 1=Reliable, 2=Best Effort (default: 1)
- input_depth_topic: Camera topic of depth images (default: /camera/depth/image_raw)
- depth_image_reliability: Reliability for the depth image topic: 0=system default, 1=Reliable, 2=Best Effort (default: 1)
- input_depth_info_topic: Camera topic for info data (default: /camera/depth/camera_info)
- depth_info_reliability: Reliability for the depth info topic: 0=system default, 1=Reliable, 2=Best Effort (default: 1)
- target_frame: frame to transform the 3D boxes (default: base_link)
- depth_image_units_divisor: Divisor to convert the depth image into meters. Depends on the camera you are using (default: 1000)
- use_tracking: Whether to activate tracking after detection (default: True)
- use_3d: Whether to activate 3D detections (default: False)
- use_debug: Whether to activate debug node (default: True)
Lifecycle Nodes
Previous updates add Lifecycle Nodes support to all the nodes available in the package.
This implementation tries to reduce the workload in the unconfigured and inactive states by only loading the models and activating the subscriber on the active state.
These are some resource comparisons using the default yolov8m.pt model on a 30fps video stream.
| State | CPU Usage (i7 12th Gen) | VRAM Usage | Bandwidth Usage |
|---|---|---|---|
| Active | 40-50% in one core | 628 MB | Up to 200 Mbps |
| Inactive | ~5-7% in one core | 338 MB | 0-20 Kbps |
Demos
Object Detection
This is the standard behavior of yolo_ros which includes object tracking.
shellros2 launch yolo_bringup yolo.launch.py
Instance Segmentation
Instance masks are the borders of the detected objects, not all the pixels inside the masks.
shellros2 launch yolo_bringup yolo.launch.py model:=yolov8m-seg.pt
Human Pose
Visible persons are detected along with their skeleton keypoints.
shellros2 launch yolo_bringup yolo.launch.py model:=yolov8m-pose.pt
3D Object Detection
The 3D bounding boxes are calculated by filtering the depth image data from an RGB-D camera using the 2D bounding box. Only objects with a 3D bounding box are visualized in the 2D image.
shellros2 launch yolo_bringup yolo.launch.py use_3d:=True
3D Object Detection (Using Instance Segmentation Masks)
In this, the depth image data is filtered using the max and min values obtained from the instance masks. Only objects with a 3D bounding box are visualized in the 2D image.
shellros2 launch yolo_bringup yolo.launch.py model:=yolov8m-seg.pt use_3d:=True
3D Human Pose
Each keypoint is projected in the depth image and visualized using purple spheres. Only objects with a 3D bounding box are visualized in the 2D image.
shellros2 launch yolo_bringup yolo.launch.py model:=yolov8m-pose.pt use_3d:=True
Contributors
Showing top 12 contributors by commit count.
