Skip to content

Commit

Permalink
fix launch options
Browse files Browse the repository at this point in the history
  • Loading branch information
samb271 committed Jun 13, 2024
1 parent c4ab9d9 commit 28c16b6
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/rove_rtabmap/launch/rtabmap.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,27 @@ def generate_launch_description():
['depth_topic', '/zed/zed_node/depth/depth_registered' ],
['camera_info_topic', '/zed/zed_node/depth/camera_info'],
['odom_topic', '/zed/zed_node/odom' ],
['odom_frame_id', '/zed/zed_node/odom'],
# ['odom_frame_id', '/zed/zed_node/odom'],
['imu_topic', '/zed/zed_node/imu/data' ],
['visual_odometry', 'false' ],
['frame_id', 'zed_camera_link' ],
['approx_sync', 'true' ],
['approx_sync', 'false' ],
['rgbd_sync', 'true' ],
['approx_rgbd_sync', 'false'],
['delete_db_on_start', 'true'],
['subscribe_scan', 'true'],
['scan_topic', '/scan'],
# ['subscribe_scan_cloud', 'true'],
# ['scan_cloud_topic', '/velodyne_points'],
# ['RGBD/NeighborLinkRefining', 'true'],
# ['RGBD/ProximityBySpace', 'true'],
# ['RGBD/AngularUpdate', '0.01'],
# ['RGBD/LinearUpdate', '0.01'],
# ['RGBD/OptimizeFromGraphEnd', 'false'],
# ['Grid/FromDepth', 'false'],
# ['Reg/Force3DoF', 'true'],
# ['Reg/Strategy', '1'],
# ['Icp/VoxelSize', '0.05'],
# ['Icp/MaxCorrespondenceDistance', '0.1'],
# ['Optimizer/Slam2D', 'true'],
]

pkg_rtabmap = get_package_share_directory('rtabmap_launch')
Expand Down

0 comments on commit 28c16b6

Please sign in to comment.