forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(radar_object_clustering): fix config arg name (autowarefoundati…
…on#6214) Signed-off-by: scepter914 <[email protected]>
- Loading branch information
1 parent
c9b446b
commit 2e8bec7
Showing
2 changed files
with
3 additions
and
6 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
7 changes: 2 additions & 5 deletions
7
perception/radar_object_clustering/launch/radar_object_clustering.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,15 +1,12 @@ | ||
<launch> | ||
<!-- Input --> | ||
<arg name="input/objects" default="~/input/objects"/> | ||
<!-- Output --> | ||
<arg name="output/objects" default="~/output/objects"/> | ||
<!-- Parameter --> | ||
<arg name="radar_object_clustering_param_path" default="$(find-pkg-share radar_object_clustering)/config/radar_object_clustering.param.yaml"/> | ||
<arg name="param_path" default="$(find-pkg-share radar_object_clustering)/config/radar_object_clustering.param.yaml"/> | ||
|
||
<!-- Node --> | ||
<node pkg="radar_object_clustering" exec="radar_object_clustering_node" name="radar_object_clustering" output="screen"> | ||
<remap from="~/input/objects" to="$(var input/objects)"/> | ||
<remap from="~/output/objects" to="$(var output/objects)"/> | ||
<param from="$(var radar_object_clustering_param_path)"/> | ||
<param from="$(var param_path)"/> | ||
</node> | ||
</launch> |