forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1514 from tier4/fix/typo
fix: typo
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ing/autoware_pointcloud_preprocessor/launch/vector_map_inside_area_filter_node.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<launch> | ||
<arg name="input_vector_map" default="/map/vector_map"/> | ||
<arg name="input_pointcloud" default="compare_map_filtered/pointcloud"/> | ||
<arg name="ouput_pointcloud" default="vector_map_inside_area_filtered/pointcloud"/> | ||
<arg name="output_pointcloud" default="vector_map_inside_area_filtered/pointcloud"/> | ||
<arg name="vector_map_inside_area_filter_param_file" default="$(find-pkg-share autoware_pointcloud_preprocessor)/config/vector_map_inside_area_filter_node.param.yaml"/> | ||
<arg name="filter_param_file" default="$(find-pkg-share autoware_pointcloud_preprocessor)/config/filter.param.yaml"/> | ||
<node pkg="autoware_pointcloud_preprocessor" exec="vector_map_inside_area_filter_node" name="vector_map_inside_area_filter_node"> | ||
<param from="$(var vector_map_inside_area_filter_param_file)"/> | ||
<param from="$(var filter_param_file)"/> | ||
<remap from="input/vector_map" to="$(var input_vector_map)"/> | ||
<remap from="input" to="$(var input_pointcloud)"/> | ||
<remap from="output" to="$(var ouput_pointcloud)"/> | ||
<remap from="output" to="$(var output_pointcloud)"/> | ||
</node> | ||
</launch> |