This chapter needs to be used with a car chassis and other sensors to operate. This is just an explanation of the implementation method. In fact, it cannot be run. It needs to be used with the company's rosmaster-X3 car to achieve this function.
If you need to transplant it to your own motherboard, you need to install other dependency files.
After the program is started, control the car through the handle or keyboard.
The car will use radar scanning data while moving, use the cartographer algorithm to build a map, and save the map after the construction is completed.
Taking ros2-foxy as an example, input following command:
sudo apt install ros-foxy-cartographer* -yThe source code of this function is located in the supporting virtual machine system.
x
~/oradar_ws/src/yahboomcar_nav/launchInput following command:
xxxxxxxxxxros2 launch yahboomcar_nav map_cartographer_launch.pyInput following command:
xxxxxxxxxxros2 launch yahboomcar_nav save_map_launch.py
The map saving path is as follows:
x~/oradar_ws/src/yahboomcar_nav/maps
There is a .pgm image and a .yaml file.
The contents of the yaml file are as follows:
x
image~/oradar_ws/src/yahboomcar_nav/maps/yahboom_map.pgmmodetrinaryresolution0.05origin-5.95 -3.26 0negate0occupied_thresh0.65free_thresh0.25Parameter analysis:
map_cartographer_launch.py
ximport osfrom ament_index_python.packages import get_package_share_directoryfrom launch import LaunchDescriptionfrom launch.actions import IncludeLaunchDescriptionfrom launch.launch_description_sources import PythonLaunchDescriptionSource
def generate_launch_description():
laser_bringup_launch = IncludeLaunchDescription( PythonLaunchDescriptionSource([os.path.join( get_package_share_directory('yahboomcar_nav'), 'launch'), '/laser_bringup_launch.py' ]) )
cartographer_launch = IncludeLaunchDescription( PythonLaunchDescriptionSource([os.path.join( get_package_share_directory('yahboomcar_nav'), 'launch'), '/cartographer_launch.py' ]) )
return LaunchDescription([laser_bringup_launch, cartographer_launch])laser_bringup_launch.py starts the radar chassis,
cartographer_launch.py starts gmapping mapping related nodes.
cartographer_launch
xxxxxxxxxximport osfrom ament_index_python.packages import get_package_share_directoryfrom launch import LaunchDescriptionfrom launch.actions import DeclareLaunchArgumentfrom launch_ros.actions import Nodefrom launch.substitutions import LaunchConfigurationfrom launch.actions import IncludeLaunchDescriptionfrom launch.launch_description_sources import PythonLaunchDescriptionSourcefrom launch.substitutions import ThisLaunchFileDir
def generate_launch_description(): use_sim_time = LaunchConfiguration('use_sim_time', default='false') package_path = get_package_share_directory('yahboomcar_nav') configuration_directory = LaunchConfiguration('configuration_directory', default=os.path.join( package_path, 'params')) configuration_basename = LaunchConfiguration('configuration_basename', default='cartographer_config.lua')
resolution = LaunchConfiguration('resolution', default='0.05') publish_period_sec = LaunchConfiguration( 'publish_period_sec', default='1.0')
return LaunchDescription([ DeclareLaunchArgument( 'configuration_directory', default_value=configuration_directory, description='Full path to config file to load'), DeclareLaunchArgument( 'configuration_basename', default_value=configuration_basename, description='Name of lua file for cartographer'), DeclareLaunchArgument( 'use_sim_time', default_value='false', description='Use simulation (Gazebo) clock if true'),
Node( package='cartographer_ros', executable='cartographer_node', name='cartographer_node', output='screen', parameters=[{'use_sim_time': use_sim_time}], arguments=['-configuration_directory', configuration_directory, '-configuration_basename', configuration_basename]),
DeclareLaunchArgument( 'resolution', default_value=resolution, description='Resolution of a grid cell in the published occupancy grid'),
DeclareLaunchArgument( 'publish_period_sec', default_value=publish_period_sec, description='OccupancyGrid publishing period'),
IncludeLaunchDescription( PythonLaunchDescriptionSource( [ThisLaunchFileDir(), '/occupancy_grid_launch.py']), launch_arguments={'use_sim_time': use_sim_time, 'resolution': resolution, 'publish_period_sec': publish_period_sec}.items(), ), ])