7. rrt_exploration mapping algorithm

The following workspace contains the function packages in the entire rplidar_ws. If you need to transplant it to your own development board, you need to copy all the function packages to the src of the workspace for compilation, and install the relevant environment.

Note: This course uses Rosmaster-X3 as an example. Users need to modify it according to their own motion model.

Different from the handheld lidar mapping content, this mapping adds odom data, so if you use your own motion model, you also need to have odom data.

Function package path: ~/rplidar_ws/src/yahboomcar_nav

7.1 Start

Input following command:

[use_rviz] parameter: whether to enable rviz visualization.

image-20221201152330947

Start Mapping

image-20221201152358686

Click [Publish Point] on the [rviz] interface, and then click on the map. Each time you click a point on the map, you must first select [Publish Point]. the clockwise or counterclockwise last point is near the car. After selecting five points as required, the robot begins to explore and build a map.

Save Map

After the mapping is completed, the map is automatically saved and returned to zero. The map is saved to the folder ~/yahboomcar_ws/src/yahboomcar_nav/maps with the name rrt_map, which can be modified in the [simple.launch] file.

View nodes:

image-20221201152612288

View TF tree:

image-20221201152710990

7.2 Introduction

The framework of the Rapid Exploration Random Tree (RRT) algorithm is as follows:

image-20221201153141707

7.2.1 Global RRT frontier point detector node.

1)Introduction

The global_rrt_frontier_detector node takes an occupancy grid and finds frontier points(i.e. exploration targets) in it. It publishes detected points so that filter nodes can process them. In a multi-robot configuration, only one instance of the node is running. If desired, running additional instances of the global boundary detector can increase the speed of boundary point detection.

2)Topics and Services
Subscribe to topicstypedescribe
mapnav_msgs/OccupancyGridTopic names are defined by the ~map_Topic parameter. It is the name of the topic that the node receives.
clicked_pointgeometry_msgs/PointStampedThe area to be probed by the global_rrt_frontier_detector node. This topic is where the node receives the five points that define the area. The first four points are the four points that define the square area to be explored, and the last point is the starting point of the tree. After these five points are announced, the RRT will begin to probe the border points.
Post a topictypedescribe
detected_pointsgeometry_msgs/PointStampedPost the topic of detected boundary points.
shapesvisualization_msgs/MarkerPost RRT hypothetical linetypes to view with Rviz.

3) Configuration parameters

parametertypeDefaultsdescribe
~map_topicstring"/robot_1/map"This node receives the map topic map name
~ etafloat5.0This parameter controls the growth rate of the RRT used to detect boundary points, in meters. This parameter should be set according to the map size, a very large value will cause the tree to grow faster and thus detect border points faster, but a larger growth rate also means that the tree will lose small corner points in the map

7.2.2 Local RRT frontier point detector node

1. Introduction

This node is similar to global_rrt_frontier_detector. However, it works differently because here the tree keeps getting reset every time a boundary point is detected. This node will run along the Global Boundary Detector node, which is responsible for quickly detecting boundary points located near the robot.

In a multi-robot configuration, each robot runs a local probe instance. So for a team of 3 robots, there will be 4 nodes for detecting boundary points; 3 local detectors and 1 global detector. If needed, running additional instances of the local boundary detector can increase the speed of boundary point detection. All detectors will publish detected boundary points("/detected_points") on the same topic.

2. Topics and Services

Subscribe to topicstypedescribe
mapnav_msgs/OccupancyGridThe name of the map topic to which this node is subscribed.
clicked_pointgeometry_msgs/PointStampedSimilar to global_rrt_frontier_detector node
Post a topictypedescribe
detected_pointsgeometry_msgs/PointStampedPost the topic of detected boundary points.
shapesvisualization_msgs/MarkerPost RRT hypothetical linetypes to view with Rviz.

3. Configuration parameters

parametertypeDefaultsdescribe~/robot_1/base_linkstring"/robot_1/base_link"Connect to the frame of the robot. Every time the RRT tree is reset, it will start from the current robot position obtained in this coordinate system.~map_topicstring"/robot_1/map"This node receives the map topic map name~ etafloat5.0This parameter controls the growth rate of the RRT used to detect boundary points, in meters. This parameter should be set according to the map size, a very large value will cause the tree to grow faster and thus detect border points faster, but a larger growth rate also means that the tree will lose small corner points in the map

7.2.3 OpenCV-based frontier detector node.

1. Introduction

This node is another edge detector, but it is not based on RRT. This node uses OpenCV tools to detect boundary points. It is designed to run alone, in a multi-bot configuration, only one instance should be running(running other instances of this node will not make any difference).

Originally, this node was implemented for comparison with RRT-based boundary detectors. Running this node along the RRT detectors(local and global) can increase the speed of boundary point detection.

Note: You can run any type and number of detectors, all of which will be published on the same topic that the filter node(explained in the next section) subscribes to. The filter, on the other hand, passes the filtered boundary points to the assignor in order to command the robot to explore these points.

2. Topics and Services

Subscribe to topicstypedescribe
mapnav_msgs/OccupancyGridThe name of the map topic to which this node is subscribed.
Post a topictypedescribe
detected_pointsgeometry_msgs/PointStampedPost the topic of detected boundary points.
shapesvisualization_msgs/MarkerPost RRT hypothetical linetypes to view with Rviz.
   

3. Configuration parameters

parametertypeDefaultsdescribe
~map_topicstring"/robot_1/map"This node receives the map topic map name

7.2.4 Filter node

1. Introduction

This node is similar to global_rrt_frontier_detector. However, it works differently because here the tree keeps getting reset every time a boundary point is detected. This node will run along the Global Boundary Detector node, which is responsible for quickly detecting boundary points located near the robot.

In a multi-robot configuration, each robot runs a local probe instance. So for a team of 3 robots, there will be 4 nodes for detecting boundary points; 3 local detectors and 1 global detector. If needed, running additional instances of the local boundary detector can increase the speed of boundary point detection. All detectors will publish detected boundary points("/detected_points") on the same topic.

2. Topics and Services

Subscribe to topicstypedescribe
mapnav_msgs/OccupancyGridTopic names are defined by the ~map_Topic parameter. It is the name of the topic that the node receives.
robot_x/move_base_node /global_costmap/costmapnav_msgs/OccupancyGridx is the number of the robot. This node subscribes to the topic of all costmaps for all robots, so costmaps are required. Normally, costmaps should be published by navigation(there will be one costmap per robot when navigation is turned on on a robot). For example, if n_robots=2, the nodes will subscribe to: robot_1/move_base_node/global_costmap/costmap and robot_2/move_base_node/global_costmap/costmap. The costmap is used to remove invalid points. Note: The namespace of all nodes corresponding to robots should start with robot_x.
detected_pointsgeometry_msgs/PointStampedThe topic name defined by ~goals_topic. It is the topic on which the filter node receives boundary detection points.
Post a topictypedescribe
frontiersvisualization_msgs/MarkerThe filter node only publishes topics of filtered boundary points.
3. Configuration parameters
parametertypeDefaultsdescribe
~map_topicstring"/robot_1/map"This node receives the map topic map name
~costmap_clearing_thresholdfloat70.0Costmap cleanup threshold
~info_radiusfloat1.0The information radius used to calculate the information gain of the boundary point.
~goals_topicstring/detected_pointsDefines the topic the node receives to detect boundary points
~n_robotsfloat1.0Number of robots
~namespacestring Namespaces
~namespace_init_countfloat1.0index of namespace
~ratefloat100.0Node cycle rate(in Hz).

7.2.5 Assigner node.

1. Introduction

This node receives target detection targets, i.e. filtered boundary points issued by the filtering node, and commands the robot accordingly. The evaluator node commands the robot via move_base_node. That's why navigation is initiated on the robot.

2. Topics and Services

Subscribe to topicstypedescribe
mapnav_msgs/OccupancyGridTopic names are defined by the ~map_Topic parameter. It is the name of the topic that the node receives.
frontiers_topicnav_msgs/OccupancyGridThe topic name is defined by the ~frontiers_topic parameter
3. Configuration parameters
parametertypeDefaultsdescribe
~map_topicstring"/robot_1/map"This node receives the map topic map name
~info_radiusfloat1.0The information radius used to calculate the information gain of the boundary point.
~info_multiplierfloat3.0The unit is meters. This parameter is used to emphasize the importance of the information gain of the boundary point relative to the cost (expected travel distance to the boundary point).
~hysteresis_radiusfloat3.0The unit is meters. This parameter defines the lag radius.
~hysteresis_gainfloat2.0The unit is meters. This parameter defines the hysteresis gain.
~frontiers_topicstring/filtered_pointsThis node receives topics for boundary points.
~n_robotsfloat1.0Number of robots
~namespacestring Namespaces
~namespace_init_countfloat1.0Starting indexing of bot names.
~delay_after_assignementfloat0.5The unit is seconds. It defines the amount of delay after each robot assignment.
~global_framestring"/map"for the global coordinate system. In a single bot, it is the same as the "map_topic" parameter. In the case of multiple robots, the coordinate system name corresponds to the global coordinate system name.