gerty168 / racecar

Gazebo 3D simulator example of ROS tutorials (version: Noetic)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

racecar

Gazebo 3D simulator example of ROS tutorials (version: Noetic)

Tested on Ubuntu 20.04

For more details, see https://www.bilibili.com/video/BV1da411j72x

Dependencies

sudo apt install ros-$ROS_DISTRO-gazebo-ros-control
sudo apt install ros-$ROS_DISTRO-effort-controllers
sudo apt install ros-$ROS_DISTRO-joint-state-controller
sudo apt install ros-$ROS_DISTRO-driver-base
sudo apt install ros-$ROS_DISTRO-ackermann-msgs
sudo apt install ros-$ROS_DISTRO-rtabmap-ros
sudo apt install ros-$ROS_DISTRO-teb-local-planner

sudo apt install tcl-dev tk-dev python3-tk

Getting Started

Save the world map

  1. Create a project workspace
mkdir -p ~/racecar_ws/src
  1. git clone and compile it
cd ~/racecar_ws/src
git clone https://github.com/soonuse/racecar.git
cd ..
catkin_make
  1. Setup .bashrc
echo "source ~/racecar_ws/devel/setup.bash" >> ~/.bashrc
source ~/.bashrc
  1. Start the gazebo map
roslaunch racecar_gazebo racecar_runway.launch

1

You should download the gazebo models or the map won't work.

git clone https://github.com/osrf/gazebo_models.git ~/.gazebo/models
  1. Open a new terminal and start rviz
roslaunch racecar_gazebo slam_gmapping.launch 

Control the car with WASD keys and draw the whole map.

2

  1. Save the map
rosrun map_server map_saver -f ~/racecar_ws/src/racecar/racecar_gazebo/map/map_runway

Path planning and automatic navigation

  1. Start navigation and the gazebo map
roslaunch racecar_gazebo racecar_runway_navigation.launch
  1. Start rviz
roslaunch racecar_gazebo racecar_rviz.launch

3

  1. Click 2D Nav Goal then click the goal on the rviz map (hold down the cursor to set the goal pose)

  2. Start the navigation script

rosrun racecar_gazebo path_pursuit.py

4

FAQ

Error: opencv not found

  1. find OpenCVConfig.cmake
sudo apt install locate
sudo updatedb
locate OpenCVConfig.cmake
  1. edit CMakeLists.txt and replace OpenCV_DIR with the correct OpenCV path replace this line
set(OpenCV_DIR /opt/ros/kinetic/share/OpenCV-3.3.1-dev/)

with the correct OpenCV path

About

Gazebo 3D simulator example of ROS tutorials (version: Noetic)


Languages

Language:C++ 71.7%Language:Python 13.7%Language:CMake 10.8%Language:C 3.4%Language:Makefile 0.4%