-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr3live_bag_ouster.launch
21 lines (18 loc) · 1.16 KB
/
r3live_bag_ouster.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<launch>
<!-- Subscribed topics -->
<param name="/LiDAR_pointcloud_topic" type="string" value= "/ouster/points" />
<param name="/IMU_topic" type="string" value= "/ouster/imu" />
<param name="/Image_topic" type="string" value= "/camera/color/image_raw" />
<param name="map_output_dir" type="string" value="$(env HOME)/r3live_output" />
<rosparam command="load" file="$(find r3live)/../config/r3live_config.yaml" />
<!-- set LiDAR type as ouster-64 spining LiDAR -->
<param name="/Lidar_front_end/lidar_type" type="int" value= "3" />
<param name="/Lidar_front_end/point_step" type="int" value="1" />
<param name="r3live_lio/lio_update_point_step" type="int" value="6" />
<node pkg="r3live" type="r3live_LiDAR_front_end" name="r3live_LiDAR_front_end" output="screen" required="true"/>
<node pkg="r3live" type="r3live_mapping" name="r3live_mapping" output="screen" required="true" />
<arg name="rviz" default="1" />
<group if="$(arg rviz)">
<node name="rvizvisualisation" pkg="rviz" type="rviz" output="log" args="-d $(find r3live)/../config/rviz/r3live_rviz_config_ouster.rviz" />
</group>
</launch>