feat(slam): add rtabmap_ros

This commit is contained in:
X-lanni
2025-07-14 11:34:38 +08:00
parent 3b6641c1fb
commit 943ce5b06f
1635 changed files with 603092 additions and 0 deletions
@@ -0,0 +1,104 @@
#
# Requirements:
# - Install: ros-$ROS_DISTRO-clearpath-simulator ros-$ROS_DISTRO-clearpath-nav2-demos ros-$ROS_DISTRO-clearpath-config ros-$ROS_DISTRO-moveit-setup-srdf-plugins
# - Copy /opt/ros/humble/share/clearpath_config/sample/a200_sample.yaml to ~/clearpath/robot.yaml
# - Fix camera intrinsics by editing /opt/ros/humble/share/clearpath_sensors_description/urdf/intel_realsense.urdf.xacro:
# <horizontal_fov>1.047</horizontal_fov>
# <image>
# <width>320</width>
# <height>240</height>
# </image>
#
# Example with gazebo:
# 1) Launch simulator (husky, nav2 and rtabmap):
# $ ros2 launch rtabmap_demos husky_sim_scan2d_demo.launch.py robot_ns:=a200_0000
#
# 2) Click on "Play" button on bottom-left of gazebo as soon as you can see it to avoid controllers crashing after 5 sec.
#
# 3) Move the robot:
# b) By sending goals with RVIZ's "Nav2 Goal" button in action bar.
# a) By teleoperating:
# $ ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args -r cmd_vel:=/a200_0000/cmd_vel
#
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.actions import IncludeLaunchDescription
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import LaunchConfiguration, PathJoinSubstitution
import os
ARGUMENTS = [
DeclareLaunchArgument('rtabmap_viz', default_value='true',
choices=['true', 'false'], description='Start rtabmap_viz.'),
DeclareLaunchArgument('localization', default_value='false',
choices=['true', 'false'], description='Start rtabmap in localization mode (a map should have been already created).'),
DeclareLaunchArgument('world', default_value='warehouse',
description='Ignition World'),
DeclareLaunchArgument('robot_ns', default_value='a200_0000',
description='Robot namespace'),
]
def generate_launch_description():
# Directories
pkg_clearpath_gz = get_package_share_directory(
'clearpath_gz')
pkg_clearpath_viz = get_package_share_directory(
'clearpath_viz')
pkg_rtabmap_demos = get_package_share_directory(
'rtabmap_demos')
pkg_clearpath_nav2_demos = get_package_share_directory(
'clearpath_nav2_demos')
# Paths
sim_launch = PathJoinSubstitution(
[pkg_clearpath_gz, 'launch', 'simulation.launch.py'])
viz_launch = PathJoinSubstitution(
[pkg_clearpath_viz, 'launch', 'view_navigation.launch.py'])
rtabmap_launch = PathJoinSubstitution(
[pkg_rtabmap_demos, 'launch', 'husky', 'husky_slam2d.launch.py'])
nav2_launch = PathJoinSubstitution(
[pkg_clearpath_nav2_demos, 'launch', 'nav2.launch.py'])
sim = IncludeLaunchDescription(
PythonLaunchDescriptionSource([sim_launch]),
launch_arguments=[
('world', LaunchConfiguration('world')),
]
)
viz = IncludeLaunchDescription(
PythonLaunchDescriptionSource([viz_launch]),
launch_arguments=[
('namespace', LaunchConfiguration('robot_ns')),
]
)
rtabmap = IncludeLaunchDescription(
PythonLaunchDescriptionSource([rtabmap_launch]),
launch_arguments=[
('rtabmap_viz', LaunchConfiguration('rtabmap_viz')),
('localization', LaunchConfiguration('localization')),
('use_sim_time', 'true'),
('robot_ns', LaunchConfiguration('robot_ns'))
]
)
nav2 = IncludeLaunchDescription(
PythonLaunchDescriptionSource([nav2_launch]),
launch_arguments=[
('setup_path', os.path.expanduser('~')+'/clearpath/'),
('use_sim_time', 'true'),
]
)
# Create launch description and add actions
ld = LaunchDescription(ARGUMENTS)
ld.add_action(rtabmap)
ld.add_action(sim)
ld.add_action(viz)
ld.add_action(nav2)
return ld
@@ -0,0 +1,104 @@
#
# Requirements:
# - Install: ros-$ROS_DISTRO-clearpath-simulator ros-$ROS_DISTRO-clearpath-nav2-demos ros-$ROS_DISTRO-clearpath-config ros-$ROS_DISTRO-moveit-setup-srdf-plugins
# - Copy /opt/ros/humble/share/clearpath_config/sample/a200_sample.yaml to ~/clearpath/robot.yaml
# - Fix camera intrinsics by editing /opt/ros/humble/share/clearpath_sensors_description/urdf/intel_realsense.urdf.xacro:
# <horizontal_fov>1.047</horizontal_fov>
# <image>
# <width>320</width>
# <height>240</height>
# </image>
# - Fix lidar sim distortions by editing /opt/ros/humble/share/clearpath_gz/worlds/warehouse.sdf (https://github.com/gazebosim/gz-sim/issues/2743):
# - <render_engine>ogre2</render_engine>
# + <render_engine>ogre</render_engine>
#
# Example with gazebo:
# 1) Launch simulator (husky, nav2 and rtabmap):
# $ ros2 launch rtabmap_demos husky_sim_scan3d_assemble_demo.launch.py robot_ns:=a200_0000
#
# 2) Click on "Play" button on bottom-left of gazebo as soon as you can see it to avoid controllers crashing after 5 sec.
#
# 3) Move the robot:
# b) By sending goals with RVIZ's "Nav2 Goal" button in action bar.
# a) By teleoperating:
# $ ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args -r cmd_vel:=/a200_0000/cmd_vel
#
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.actions import IncludeLaunchDescription
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import LaunchConfiguration, PathJoinSubstitution
import os
ARGUMENTS = [
DeclareLaunchArgument('rtabmap_viz', default_value='true',
choices=['true', 'false'], description='Start rtabmap_viz.'),
DeclareLaunchArgument('world', default_value='warehouse',
description='Ignition World'),
DeclareLaunchArgument('robot_ns', default_value='a200_0000',
description='Robot namespace'),
]
def generate_launch_description():
# Directories
pkg_clearpath_gz = get_package_share_directory(
'clearpath_gz')
pkg_clearpath_viz = get_package_share_directory(
'clearpath_viz')
pkg_rtabmap_demos = get_package_share_directory(
'rtabmap_demos')
pkg_clearpath_nav2_demos = get_package_share_directory(
'clearpath_nav2_demos')
# Paths
sim_launch = PathJoinSubstitution(
[pkg_clearpath_gz, 'launch', 'simulation.launch.py'])
viz_launch = PathJoinSubstitution(
[pkg_clearpath_viz, 'launch', 'view_navigation.launch.py'])
rtabmap_launch = PathJoinSubstitution(
[pkg_rtabmap_demos, 'launch', 'husky', 'husky_slam3d_assemble.launch.py'])
nav2_launch = PathJoinSubstitution(
[pkg_clearpath_nav2_demos, 'launch', 'nav2.launch.py'])
sim = IncludeLaunchDescription(
PythonLaunchDescriptionSource([sim_launch]),
launch_arguments=[
('world', LaunchConfiguration('world')),
]
)
viz = IncludeLaunchDescription(
PythonLaunchDescriptionSource([viz_launch]),
launch_arguments=[
('namespace', LaunchConfiguration('robot_ns')),
]
)
rtabmap = IncludeLaunchDescription(
PythonLaunchDescriptionSource([rtabmap_launch]),
launch_arguments=[
('rtabmap_viz', LaunchConfiguration('rtabmap_viz')),
('use_sim_time', 'true'),
('robot_ns', LaunchConfiguration('robot_ns'))
]
)
nav2 = IncludeLaunchDescription(
PythonLaunchDescriptionSource([nav2_launch]),
launch_arguments=[
('setup_path', os.path.expanduser('~')+'/clearpath/'),
('use_sim_time', 'true'),
]
)
# Create launch description and add actions
ld = LaunchDescription(ARGUMENTS)
ld.add_action(rtabmap)
ld.add_action(sim)
ld.add_action(viz)
ld.add_action(nav2)
return ld
@@ -0,0 +1,110 @@
#
# Requirements:
# - Install: ros-$ROS_DISTRO-clearpath-simulator ros-$ROS_DISTRO-clearpath-nav2-demos ros-$ROS_DISTRO-clearpath-config ros-$ROS_DISTRO-moveit-setup-srdf-plugins
# - Copy /opt/ros/humble/share/clearpath_config/sample/a200_sample.yaml to ~/clearpath/robot.yaml
# - Fix camera intrinsics by editing /opt/ros/humble/share/clearpath_sensors_description/urdf/intel_realsense.urdf.xacro:
# <horizontal_fov>1.047</horizontal_fov>
# <image>
# <width>320</width>
# <height>240</height>
# </image>
# - Fix lidar sim distortions by editing /opt/ros/humble/share/clearpath_gz/worlds/warehouse.sdf (https://github.com/gazebosim/gz-sim/issues/2743):
# - <render_engine>ogre2</render_engine>
# + <render_engine>ogre</render_engine>
#
# Example with gazebo:
# 1) Launch simulator (husky, nav2 and rtabmap):
# $ ros2 launch rtabmap_demos husky_sim_scan3d_demo.launch.py robot_ns:=a200_0000
#
# 2) Click on "Play" button on bottom-left of gazebo as soon as you can see it to avoid controllers crashing after 5 sec.
#
# 3) Move the robot:
# b) By sending goals with RVIZ's "Nav2 Goal" button in action bar.
# a) By teleoperating:
# $ ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args -r cmd_vel:=/a200_0000/cmd_vel
#
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.actions import IncludeLaunchDescription
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import LaunchConfiguration, PathJoinSubstitution
import os
ARGUMENTS = [
DeclareLaunchArgument('rtabmap_viz', default_value='true',
choices=['true', 'false'], description='Start rtabmap_viz.'),
DeclareLaunchArgument('localization', default_value='false',
choices=['true', 'false'], description='Start rtabmap in localization mode (a map should have been already created).'),
DeclareLaunchArgument('world', default_value='warehouse',
description='Ignition World'),
DeclareLaunchArgument('robot_ns', default_value='a200_0000',
description='Robot namespace'),
DeclareLaunchArgument('use_camera', default_value='true',
description='Use camera for global loop closure / re-localization.'),
]
def generate_launch_description():
# Directories
pkg_clearpath_gz = get_package_share_directory(
'clearpath_gz')
pkg_clearpath_viz = get_package_share_directory(
'clearpath_viz')
pkg_rtabmap_demos = get_package_share_directory(
'rtabmap_demos')
pkg_clearpath_nav2_demos = get_package_share_directory(
'clearpath_nav2_demos')
# Paths
sim_launch = PathJoinSubstitution(
[pkg_clearpath_gz, 'launch', 'simulation.launch.py'])
viz_launch = PathJoinSubstitution(
[pkg_clearpath_viz, 'launch', 'view_navigation.launch.py'])
rtabmap_launch = PathJoinSubstitution(
[pkg_rtabmap_demos, 'launch', 'husky', 'husky_slam3d.launch.py'])
nav2_launch = PathJoinSubstitution(
[pkg_clearpath_nav2_demos, 'launch', 'nav2.launch.py'])
sim = IncludeLaunchDescription(
PythonLaunchDescriptionSource([sim_launch]),
launch_arguments=[
('world', LaunchConfiguration('world')),
]
)
viz = IncludeLaunchDescription(
PythonLaunchDescriptionSource([viz_launch]),
launch_arguments=[
('namespace', LaunchConfiguration('robot_ns')),
]
)
rtabmap = IncludeLaunchDescription(
PythonLaunchDescriptionSource([rtabmap_launch]),
launch_arguments=[
('rtabmap_viz', LaunchConfiguration('rtabmap_viz')),
('localization', LaunchConfiguration('localization')),
('use_sim_time', 'true'),
('use_camera', LaunchConfiguration('use_camera')),
('robot_ns', LaunchConfiguration('robot_ns'))
]
)
nav2 = IncludeLaunchDescription(
PythonLaunchDescriptionSource([nav2_launch]),
launch_arguments=[
('setup_path', os.path.expanduser('~')+'/clearpath/'),
('use_sim_time', 'true'),
]
)
# Create launch description and add actions
ld = LaunchDescription(ARGUMENTS)
ld.add_action(rtabmap)
ld.add_action(sim)
ld.add_action(viz)
ld.add_action(nav2)
return ld
@@ -0,0 +1,128 @@
#
#
# Example with gazebo:
# 1) Launch simulator (husky):
# $ ros2 launch clearpath_gz simulation.launch.py
# Click on "Play" button on bottom-left of gazebo as soon as you can see it to avoid controllers crashing after 5 sec.
#
# 2) Launch rviz:
# $ ros2 launch clearpath_viz view_navigation.launch.py namespace:=a200_0000
#
# 3) Launch SLAM:
# $ ros2 launch rtabmap_demos husky_slam2d.launch.py use_sim_time:=true
#
# 4) Launch nav2"
# $ ros2 launch clearpath_nav2_demos nav2.launch.py setup_path:=$HOME/clearpath/ use_sim_time:=true
#
# 4) Click on "Play" button on bottom-left of gazebo.
#
# 5) Move the robot:
# b) By sending goals with RVIZ's "Nav2 Goal" button in action bar.
# a) By teleoperating:
# $ ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args -r cmd_vel:=/a200_0000/cmd_vel
#
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable
from launch.substitutions import LaunchConfiguration
from launch.conditions import IfCondition, UnlessCondition
from launch_ros.actions import Node
def generate_launch_description():
use_sim_time = LaunchConfiguration('use_sim_time')
localization = LaunchConfiguration('localization')
robot_ns = LaunchConfiguration('robot_ns')
icp_odom_parameters={
'odom_frame_id':'icp_odom',
'guess_frame_id':'odom'
}
rtabmap_parameters={
'subscribe_rgbd':True,
'subscribe_scan':True,
'use_action_for_goal':True,
'odom_sensor_sync': True,
# RTAB-Map's parameters should be strings:
'Mem/NotLinkedNodesKept':'false',
'Grid/RangeMin':'0.7', # ignore laser scan points on the robot itself
'RGBD/OptimizeMaxError':'2',
}
# Shared parameters between different nodes
shared_parameters={
'frame_id':'base_link',
'use_sim_time':use_sim_time,
# RTAB-Map's parameters should be strings:
'Reg/Strategy':'1',
'Reg/Force3DoF':'true', # we are moving on a 2D flat floor
'Mem/NotLinkedNodesKept':'false',
'Icp/PointToPlaneMinComplexity':'0.04', # to be more robust to long corridors with low geometry
'Icp/MaxTranslation': '1'
}
remappings=[
('/tf', 'tf'),
('/tf_static', 'tf_static'),
('odom', 'icp_odom'),
('scan', 'sensors/lidar2d_0/scan'),
('rgb/image', 'sensors/camera_0/color/image'),
('rgb/camera_info', 'sensors/camera_0/color/camera_info'),
('depth/image', 'sensors/camera_0/depth/image')]
return LaunchDescription([
# Launch arguments
DeclareLaunchArgument(
'use_sim_time', default_value='false', choices=['true', 'false'],
description='Use simulation (Gazebo) clock if true'),
DeclareLaunchArgument(
'localization', default_value='false', choices=['true', 'false'],
description='Launch rtabmap in localization mode (a map should have been already created).'),
DeclareLaunchArgument(
'robot_ns', default_value='a200_0000',
description='Robot namespace.'),
# Nodes to launch
Node(
package='rtabmap_sync', executable='rgbd_sync', output='screen',
namespace=robot_ns,
parameters=[{'approx_sync':False, 'use_sim_time':use_sim_time}],
remappings=remappings),
Node(
package='rtabmap_odom', executable='icp_odometry', output='screen',
namespace=robot_ns,
parameters=[icp_odom_parameters, shared_parameters],
remappings=remappings,
arguments=["--ros-args", "--log-level", 'warn']),
# SLAM Mode:
Node(
condition=UnlessCondition(localization),
package='rtabmap_slam', executable='rtabmap', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters],
remappings=remappings,
arguments=['-d']),
# Localization mode:
Node(
condition=IfCondition(localization),
package='rtabmap_slam', executable='rtabmap', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters,
{'Mem/IncrementalMemory':'False',
'Mem/InitWMWithAllNodes':'True'}],
remappings=remappings),
Node(
package='rtabmap_viz', executable='rtabmap_viz', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters],
remappings=remappings),
])
@@ -0,0 +1,146 @@
#
#
# Example with gazebo:
# 1) Launch simulator (husky):
# $ ros2 launch clearpath_gz simulation.launch.py
# Click on "Play" button on bottom-left of gazebo as soon as you can see it to avoid controllers crashing after 5 sec.
#
# 2) Launch rviz:
# $ ros2 launch clearpath_viz view_navigation.launch.py namespace:=a200_0000
#
# 3) Launch SLAM:
# $ ros2 launch rtabmap_demos husky_slam3d.launch.py use_sim_time:=true
#
# 4) Launch nav2"
# $ ros2 launch clearpath_nav2_demos nav2.launch.py setup_path:=$HOME/clearpath/ use_sim_time:=true
#
# 4) Click on "Play" button on bottom-left of gazebo.
#
# 5) Move the robot:
# b) By sending goals with RVIZ's "Nav2 Goal" button in action bar.
# a) By teleoperating:
# $ ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args -r cmd_vel:=/a200_0000/cmd_vel
#
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable
from launch.substitutions import LaunchConfiguration
from launch.conditions import IfCondition, UnlessCondition
from launch_ros.actions import Node
def generate_launch_description():
use_sim_time = LaunchConfiguration('use_sim_time')
localization = LaunchConfiguration('localization')
robot_ns = LaunchConfiguration('robot_ns')
use_camera = LaunchConfiguration('use_camera')
icp_odom_parameters={
'odom_frame_id':'icp_odom',
'guess_frame_id':'odom',
'OdomF2M/ScanSubtractRadius': '0.3', # match voxel size
'OdomF2M/ScanMaxSize': '10000'
}
rtabmap_parameters={
'subscribe_rgb':False,
'subscribe_depth':False,
'subscribe_rgbd': use_camera,
'subscribe_scan_cloud':True,
'use_action_for_goal':True,
'odom_sensor_sync': True,
# RTAB-Map's parameters should be strings:
'Mem/NotLinkedNodesKept':'false',
'Grid/RangeMin':'0.5', # ignore laser scan points on the robot itself
'Grid/NormalsSegmentation':'false', # Use passthrough filter to detect obstacles
'Grid/MaxGroundHeight':'0.05', # All points above 5 cm are obstacles
'Grid/MaxObstacleHeight':'1', # All points over 1 meter are ignored
'Grid/RayTracing':'true', # Fill empty space
'Grid/3D':'false', # Use 2D occupancy
'RGBD/OptimizeMaxError':'0.3', # There are a lot of repetitive patterns, be more strict in accepting loop closures
}
# Shared parameters between different nodes
shared_parameters={
'frame_id':'base_link',
'use_sim_time':use_sim_time,
# RTAB-Map's parameters should be strings:
'Reg/Strategy':'1',
'Reg/Force3DoF':'true', # we are moving on a 2D flat floor
'Mem/NotLinkedNodesKept':'false',
'Icp/VoxelSize': '0.3',
'Icp/MaxCorrespondenceDistance': '3', # roughly 10x voxel size
'Icp/PointToPlaneGroundNormalsUp': '0.9',
'Icp/RangeMin': '0.5',
'Icp/MaxTranslation': '1'
}
remappings=[
('/tf', 'tf'),
('/tf_static', 'tf_static'),
('odom', 'icp_odom'),
('scan_cloud', 'sensors/lidar3d_0/points'),
('rgb/image', 'sensors/camera_0/color/image'),
('rgb/camera_info', 'sensors/camera_0/color/camera_info'),
('depth/image', 'sensors/camera_0/depth/image')]
return LaunchDescription([
# Launch arguments
DeclareLaunchArgument(
'use_sim_time', default_value='false', choices=['true', 'false'],
description='Use simulation (Gazebo) clock if true'),
DeclareLaunchArgument(
'localization', default_value='false', choices=['true', 'false'],
description='Launch rtabmap in localization mode (a map should have been already created).'),
DeclareLaunchArgument(
'robot_ns', default_value='a200_0000',
description='Robot namespace.'),
DeclareLaunchArgument(
'use_camera', default_value='true',
description='Use camera for global loop closure / re-localization.'),
# Nodes to launch
Node(
condition=IfCondition(use_camera),
package='rtabmap_sync', executable='rgbd_sync', output='screen',
namespace=robot_ns,
parameters=[{'approx_sync':False, 'use_sim_time':use_sim_time}],
remappings=remappings),
Node(
package='rtabmap_odom', executable='icp_odometry', output='screen',
namespace=robot_ns,
parameters=[icp_odom_parameters, shared_parameters],
remappings=remappings,
arguments=["--ros-args", "--log-level", 'warn']),
# SLAM Mode:
Node(
condition=UnlessCondition(localization),
package='rtabmap_slam', executable='rtabmap', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters],
remappings=remappings,
arguments=['-d']),
# Localization mode:
Node(
condition=IfCondition(localization),
package='rtabmap_slam', executable='rtabmap', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters,
{'Mem/IncrementalMemory':'False',
'Mem/InitWMWithAllNodes':'True'}],
remappings=remappings),
Node(
package='rtabmap_viz', executable='rtabmap_viz', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters],
remappings=remappings),
])
@@ -0,0 +1,134 @@
#
#
# Example with gazebo:
# 1) Launch simulator (husky):
# $ ros2 launch clearpath_gz simulation.launch.py
# Click on "Play" button on bottom-left of gazebo as soon as you can see it to avoid controllers crashing after 5 sec.
#
# 2) Launch rviz:
# $ ros2 launch clearpath_viz view_navigation.launch.py namespace:=a200_0000
#
# 3) Launch SLAM:
# $ ros2 launch rtabmap_demos husky_slam3d_assemble.launch.py use_sim_time:=true
#
# 4) Launch nav2"
# $ ros2 launch clearpath_nav2_demos nav2.launch.py setup_path:=$HOME/clearpath/ use_sim_time:=true
#
# 4) Click on "Play" button on bottom-left of gazebo.
#
# 5) Move the robot:
# b) By sending goals with RVIZ's "Nav2 Goal" button in action bar.
# a) By teleoperating:
# $ ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args -r cmd_vel:=/a200_0000/cmd_vel
#
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node
def generate_launch_description():
use_sim_time = LaunchConfiguration('use_sim_time')
robot_ns = LaunchConfiguration('robot_ns')
icp_odom_parameters={
'odom_frame_id':'icp_odom',
'guess_frame_id':'odom',
'OdomF2M/ScanSubtractRadius': '0.3', # match voxel size
'OdomF2M/ScanMaxSize': '10000'
}
rtabmap_parameters={
'subscribe_rgbd':True,
'subscribe_depth':False,
'subscribe_rgb':False,
'subscribe_scan_cloud':True,
'use_action_for_goal':True,
'odom_sensor_sync': True,
'topic_queue_size': 30,
'sync_queue_size': 30,
'approx_sync': True,
'qos': 1,
# RTAB-Map's parameters should be strings:
'Mem/NotLinkedNodesKept':'false',
'Grid/RangeMin':'0.5', # ignore laser scan points on the robot itself
'Grid/NormalsSegmentation':'false', # Use passthrough filter to detect obstacles
'Grid/MaxGroundHeight':'0.05', # All points above 5 cm are obstacles
'Grid/MaxObstacleHeight':'1', # All points over 1 meter are ignored
'Grid/RayTracing':'true', # Fill empty space
'Grid/3D':'false', # Use 2D occupancy
'RGBD/OptimizeMaxError':'0.3', # There are a lot of repetitive patterns, be more strict in accepting loop closures
'Rtabmap/DetectionRate': '0' # Rate is limited by the assembling time below (1 Hz)
}
# Shared parameters between different nodes
shared_parameters={
'frame_id':'base_link',
'use_sim_time':use_sim_time,
# RTAB-Map's parameters should be strings:
'Reg/Strategy':'1',
'Reg/Force3DoF':'true', # we are moving on a 2D flat floor
'Mem/NotLinkedNodesKept':'false',
'Icp/VoxelSize': '0.3',
'Icp/MaxCorrespondenceDistance': '3', # roughly 10x voxel size
'Icp/PointToPlaneGroundNormalsUp': '0.9',
'Icp/RangeMin': '0.5',
'Icp/MaxTranslation': '2'
}
remappings=[
('/tf', 'tf'),
('/tf_static', 'tf_static'),
('odom', 'icp_odom'),
('rgb/image', 'sensors/camera_0/color/image'),
('rgb/camera_info', 'sensors/camera_0/color/camera_info'),
('depth/image', 'sensors/camera_0/depth/image')]
return LaunchDescription([
# Launch arguments
DeclareLaunchArgument(
'use_sim_time', default_value='false', choices=['true', 'false'],
description='Use simulation (Gazebo) clock if true'),
DeclareLaunchArgument(
'robot_ns', default_value='a200_0000',
description='Robot namespace.'),
# Nodes to launch
Node(
package='rtabmap_sync', executable='rgbd_sync', output='screen',
namespace=robot_ns,
parameters=[{'approx_sync':False, 'use_sim_time':use_sim_time}],
remappings=remappings),
Node(
package='rtabmap_odom', executable='icp_odometry', output='screen',
namespace=robot_ns,
parameters=[icp_odom_parameters, shared_parameters],
remappings=remappings + [('scan_cloud', 'sensors/lidar3d_0/points')],
arguments=["--ros-args", "--log-level", 'warn']),
#Assemble scans
Node(
package='rtabmap_util', executable='point_cloud_assembler', output='screen',
namespace=robot_ns,
parameters=[{'assembling_time': 1.0, 'range_min': 0.5, 'fixed_frame_id': "", 'use_sim_time':use_sim_time, 'sync_queue_size': 30, 'topic_queue_size':30}],
remappings=remappings + [('cloud', 'sensors/lidar3d_0/points')]),
# SLAM Mode:
Node(
package='rtabmap_slam', executable='rtabmap', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters],
remappings=remappings + [('scan_cloud', 'assembled_cloud')],
arguments=['-d']),
Node(
package='rtabmap_viz', executable='rtabmap_viz', output='screen',
namespace=robot_ns,
parameters=[rtabmap_parameters, shared_parameters],
remappings=remappings + [('scan_cloud', 'sensors/lidar3d_0/points')]),
])