Repository Summary
Checkout URI | https://github.com/h-naderi/unitree-go2-slam-nav2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-06 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
frontier | 0.0.0 |
go2_cmd_processor | 0.0.0 |
go2_slam_nav | 0.0.0 |
image_processing | 0.0.0 |
README
Unitree-Go2 Robot: SLAM and Nav2 Demos
By: Hossein Naderi
Welcome to the Unitree-Go2 Robot SLAM and Nav2 repository! This project demonstrates the integration of SLAM (Simultaneous Localization and Mapping) and autonomous navigation using Nav2 on the Unitree-Go2 robot. The repository includes demonstration videos, source code, and comprehensive documentation to assist in replicating and building upon the showcased capabilities.:contentReference[oaicite:0]{index=0}
Table of Contents
Overview
- Robot Platform: Unitree-Go2
- SLAM: ROS 2 RTAB-Map
- Navigation: ROS 2 Nav2
Key Features
- Real-time mapping in indoor and outdoor environments
- Obstacle avoidance using Nav2 and sensor data
- Sensor fusion combining RGB Depth Camera with LiDAR point cloud
- Autonomous path planning to specified goals
- Facial recognition capabilities for identifying individuals during navigation
Demo Videos
-
SLAM Demo Video
Demonstration of integrated SLAM with Unitree-Go2 using RTAB-Map in ROS2. -
Autonomous Navigation Demo Video
Demonstration of integrated Autonomous Navigation with Unitree-Go2 using Nav2 Stack in ROS2.
Dependencies
- Unitree SDK: https://github.com/unitreerobotics/unitree_ros2
- LiDAR SDK: https://github.com/RoboSense-LiDAR/rslidar_sdk
- LiDAR Messages: https://github.com/RoboSense-LiDAR/rslidar_msg
Workspace Setup
- Create your workspace:
mkdir -p ~/ws/src
cd ~/ws/src
- Clone this repository:
git clone https://github.com/h-naderi/unitree-go2-slam-nav2.git
- Navigate to the repository:
cd unitree-go2-slam-nav2
- Import dependencies using
vcs
:
vcs import < dependencies.repo
- Install dependencies and build the workspace:
cd ~/ws
rosdep install --from-paths src --ignore-src -r -y
colcon build
- Source the workspace:
source ~/ws/install/setup.bash
Launch Files
- Launch the Intel RealSense camera node:
ros2 launch realsense2_camera rs_launch.py enable_gyro:=true enable_accel:=true unite_imu_method:=1 enable_infra1:=true enable_infra2:=true enable_sync:=true
- Launch everything on the robot for mapping with the LiDAR only:
ros2 launch go2_slam_nav mapping.launch.py
- Launch the robot with the RealSense camera and the LiDAR:
ros2 launch go2_slam_nav mapping_camera.launch.py
- Launch the navigation:
ros2 launch go2_slam_nav nav.launch.py
- Launch the exploration node only:
ros2 launch frontier frontier_update.launch.xml
Feel free to reach out if you have any questions or need further assistance with setting up the project.
Detailed Project Explanations
For comprehensive explanations and insights into each project component, please refer to my portfolio:
- SLAM Project: SLAM Project
- Autonomous Navigation: Navigation Project