Skip to content

Commit b8e779d

Browse files
committed
rename path
Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
1 parent b7c8f1a commit b8e779d

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

launch/tier4_localization_launch/launch/localization.launch.xml

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<arg name="twist_source"/>
55
<arg name="system_run_mode"/>
66

7-
<!-- Parameter files -->
8-
<arg name="ndt_scan_matcher/pointcloud_preprocess/crop_box_filter_measurement_range_param_path"/>
9-
<arg name="ndt_scan_matcher/pointcloud_preprocess/voxel_grid_downsample_filter_param_path"/>
10-
<arg name="ndt_scan_matcher/pointcloud_preprocess/random_downsample_filter_param_path"/>
7+
<!-- parameter paths for ndt -->
8+
<arg name="ndt_scan_matcher/pointcloud_preprocessor/crop_box_filter_measurement_range_param_path"/>
9+
<arg name="ndt_scan_matcher/pointcloud_preprocessor/voxel_grid_downsample_filter_param_path"/>
10+
<arg name="ndt_scan_matcher/pointcloud_preprocessor/random_downsample_filter_param_path"/>
1111
<arg name="ndt_scan_matcher/ndt_scan_matcher_param_path"/>
12+
13+
<!-- Parameter files -->
1214
<arg name="localization_error_monitor_param_path"/>
1315
<arg name="ekf_localizer_param_path"/>
1416
<arg name="pose_initializer_param_path"/>

launch/tier4_localization_launch/launch/util/util.launch.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010

1111
<load_composable_node target="$(var lidar_container_name)">
1212
<composable_node pkg="pointcloud_preprocessor" plugin="pointcloud_preprocessor::CropBoxFilterComponent" name="crop_box_filter_measurement_range">
13-
<param from="$(var ndt_scan_matcher/pointcloud_preprocess/crop_box_filter_measurement_range_param_path)"/>
13+
<param from="$(var ndt_scan_matcher/pointcloud_preprocessor/crop_box_filter_measurement_range_param_path)"/>
1414
<remap from="input" to="$(var input_pointcloud)"/>
1515
<remap from="output" to="measurement_range/pointcloud"/>
1616
<extra_arg name="use_intra_process_comms" value="$(var use_intra_process)"/>
1717
</composable_node>
1818

1919
<composable_node pkg="pointcloud_preprocessor" plugin="pointcloud_preprocessor::VoxelGridDownsampleFilterComponent" name="voxel_grid_downsample_filter">
20-
<param from="$(var ndt_scan_matcher/pointcloud_preprocess/voxel_grid_downsample_filter_param_path)"/>
20+
<param from="$(var ndt_scan_matcher/pointcloud_preprocessor/voxel_grid_downsample_filter_param_path)"/>
2121
<remap from="input" to="measurement_range/pointcloud"/>
2222
<remap from="output" to="voxel_grid_downsample/pointcloud"/>
2323
<extra_arg name="use_intra_process_comms" value="$(var use_intra_process)"/>
2424
</composable_node>
2525

2626
<composable_node pkg="pointcloud_preprocessor" plugin="pointcloud_preprocessor::RandomDownsampleFilterComponent" name="random_downsample_filter">
27-
<param from="$(var ndt_scan_matcher/pointcloud_preprocess/random_downsample_filter_param_path)"/>
27+
<param from="$(var ndt_scan_matcher/pointcloud_preprocessor/random_downsample_filter_param_path)"/>
2828
<remap from="input" to="voxel_grid_downsample/pointcloud"/>
2929
<remap from="output" to="$(var output/pointcloud)"/>
3030
<extra_arg name="use_intra_process_comms" value="$(var use_intra_process)"/>

0 commit comments

Comments
 (0)