-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathopen3d_loc_g1.launch
More file actions
45 lines (34 loc) · 1.91 KB
/
Copy pathopen3d_loc_g1.launch
File metadata and controls
45 lines (34 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<launch>
<!-- localization -->
<node pkg="tf2_ros" type="static_transform_publisher" name="camera_init2odom"
args="0 0 0 0 0 0 1 odom camera_init" />
<node pkg="tf2_ros" type="static_transform_publisher" name="imulink2baselink"
args="0 0 0 0 0 0 1 base_link imu_link" />
<node pkg="tf2_ros" type="static_transform_publisher" name="base_center_broadcaster"
args="0 0 0 0 0 0 1 motion_link base_link" />
<node pkg="open3d_loc" type="global_localization_node" name="global_localization_node" output="screen">
<rosparam command="load" file="$(find open3d_loc)/config/loc_param_g1.yaml" />
<param name="path_map" type="string" value="$(find open3d_loc)/../data/map.ply" />
<param name="pcd_queue_maxsize" type="int" value="10" />
<param name="voxelsize_coarse" type="double" value="0.15" />
<param name="voxelsize_fine" type="double" value="0.1" />
<!-- 定位配准阈值,超过这个值才更新odom2map -->
<param name="threshold_fitness" type="double" value="0.5" />
<!-- 初始化配准阈值,超过这个才能初始化成功 -->
<param name="threshold_fitness_init" type="double" value="0.5" />
<param name="loc_frequence" type="double" value="2.5" />
<param name="save_scan" type="bool" value="0"/>
<param name="hidden_removal" type="bool" value="0"/>
<param name="maxpoints_source" type="int" value="80000" />
<param name="maxpoints_target" type="int" value="400000" />
<!-- for odom2map -->
<param name="filter_odom2map" type="bool" value="0"/>
<param name="kalman_processVar2" type="double" value="0.001" />
<param name="kalman_estimatedMeasVar2" type="double" value="0.02" />
<!-- localization confidence threshold-->
<param name="confidence_loc_th" type="double" value="0.7" />
<!-- distance th for update current submap(target, history) -->
<param name="dis_updatemap" type="double" value="3.5" />
</node>
<param name="use_sim_time" value="false" />
</launch>