Difference between revisions of "Advantech Robotic Suite/Gazebo"

From ESS-WIKI
Jump to: navigation, search
Line 45: Line 45:
 
We can download some worlds and models in [https://app.gazebosim.org/fuel/worlds gazebosim_app].
 
We can download some worlds and models in [https://app.gazebosim.org/fuel/worlds gazebosim_app].
 
[[File:Gazebo5.png|none|ROS2 gazebo|1000px]]
 
[[File:Gazebo5.png|none|ROS2 gazebo|1000px]]
 
+
== Connect with ros2 ==
 +
=== Install ros_gz_bridge ===
 +
<pre>
 +
sudo apt-get install ros-${ROS_DISTRO}-ros-gz
 +
</pre>
 +
=== Create bridge from gazebo and ros2 ===
 +
example for lidar and camera:
 +
<pre>
 +
ros2 run ros_gz_bridge parameter_bridge /world/world_demo/model/tugbot/link/scan_omni/sensor/scan_omni/scan/points@sensor_msgs/msg/PointCloud2[gz.msgs.PointCloudPacked
 +
ros2 run ros_gz_bridge parameter_bridge /world/world_demo/model/tugbot/link/camera_front/sensor/color/image@sensor_msgs/msg/Image[gz.msgs.Image
 +
</pre>
 +
[[File:ros2_gazebo3.png|none|ROS2 gazebo|800px]]
  
 
[[Category:Editor]]
 
[[Category:Editor]]

Revision as of 08:05, 29 July 2024

Introduction

Gazebo is a 3D simulator designed to accurately and efficiently simulate robots in complex indoor and outdoor environments. Unlike typical game engines, Gazebo offers high-fidelity physics simulation, a variety of sensors, and user-friendly interfaces for both users and programs. It can fully integrate with ROS (Robot Operating System) using the gazebo_ros package, allowing you to control simulated robots with ROS messages and services.

Typical uses of Gazebo include:

  • Testing robotics algorithms
  • Designing robots
  • Performing regression testing with realistic scenarios

Key features of Gazebo:

  • Multiple physics engines
  • A rich library of robot models and environments
  • A wide variety of sensors
  • Convenient programmatic and graphical interfaces

Recommand Requirement

  • Processor (CPU) — Quad core Intel i5, or equivalent
  • Memory (RAM) — 4 GB or more
  • [Optional] Graphics card (GPU) — Dedicated GPU with 1 GB or more graphics memory
  • Disk space — At least 500 MB free disk space

Install

First install some necessary tools:

sudo apt-get update
sudo apt-get install lsb-release curl gnupg

Then install Gazebo (It is recommended to install the appropriate version, please refer to gazebosim):

sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
sudo apt-get update
sudo apt-get install gz-garden

How to

Run gazebo

gz sim

Choose the world you want to execute.

ROS2 gazebo

For quick use and test, select “Tugbot In Warehouse”, and click RUN.

ROS2 gazebo

Download worlds and models

We can download some worlds and models in gazebosim_app.

ROS2 gazebo

Connect with ros2

Install ros_gz_bridge

sudo apt-get install ros-${ROS_DISTRO}-ros-gz

Create bridge from gazebo and ros2

example for lidar and camera:

ros2 run ros_gz_bridge parameter_bridge /world/world_demo/model/tugbot/link/scan_omni/sensor/scan_omni/scan/points@sensor_msgs/msg/PointCloud2[gz.msgs.PointCloudPacked
ros2 run ros_gz_bridge parameter_bridge /world/world_demo/model/tugbot/link/camera_front/sensor/color/image@sensor_msgs/msg/Image[gz.msgs.Image
ROS2 gazebo