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.
add detection by tracker (autowarefoundation#418)
add detection by tracker
- Loading branch information
1 parent
9b43328
commit eea8ef2
Showing
2 changed files
with
51 additions
and
5 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
52 changes: 49 additions & 3 deletions
52
perception_launch/launch/object_recognition/detection/lidar_based_detection.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,6 +1,52 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<include file="$(find-pkg-share lidar_centerpoint)/launch/lidar_centerpoint.launch.xml"> | ||
<arg name="output/objects" value="objects" /> | ||
</include> | ||
<arg name="use_vector_map" default="true" description="use vector map in prediction"/> | ||
|
||
<!-- Clustering--> | ||
<group> | ||
<include file="$(find-pkg-share euclidean_cluster)/launch/voxel_grid_based_euclidean_cluster.launch.xml"> | ||
<arg name="output_clusters" value="clusters"/> | ||
<arg name="use_pointcloud_map" value="false"/> | ||
</include> | ||
</group> | ||
|
||
<!-- DetectionByTracker --> | ||
<group> | ||
<push-ros-namespace namespace="detection_by_tracker"/> | ||
<include file="$(find-pkg-share detection_by_tracker)/launch/detection_by_tracker.launch.xml"> | ||
</include> | ||
</group> | ||
|
||
<!-- CenterPoint --> | ||
<group> | ||
<push-ros-namespace namespace="centerpoint"/> | ||
<group> | ||
<include file="$(find-pkg-share lidar_centerpoint)/launch/lidar_centerpoint.launch.xml" /> | ||
</group> | ||
<group> | ||
<include file="$(find-pkg-share dynamic_object_visualization)/launch/dynamic_object_visualizer.launch.xml"> | ||
<arg name="input" value="objects"/> | ||
<arg name="with_feature" value="true"/> | ||
<arg name="only_known_objects" value="true"/> | ||
</include> | ||
</group> | ||
</group> | ||
|
||
<!-- Merger --> | ||
<group> | ||
<include file="$(find-pkg-share object_merger)/launch/object_association_merger.launch.xml"> | ||
<arg name="input/object0" value="centerpoint/objects"/> | ||
<arg name="input/object1" value="detection_by_tracker/objects"/> | ||
<arg name="output/object" value="objects"/> | ||
</include> | ||
</group> | ||
|
||
<!-- visualization --> | ||
<group> | ||
<include file="$(find-pkg-share dynamic_object_visualization)/launch/dynamic_object_visualizer.launch.xml"> | ||
<arg name="input" value="objects"/> | ||
<arg name="with_feature" value="true"/> | ||
<arg name="only_known_objects" value="true"/> | ||
</include> | ||
</group> | ||
</launch> |