-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(multi_object_tracker): add multi object input config file (#989)
* feat: add multi-input channel config Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * fix: component config Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * fix: remove expected interval, add spawn Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * fix: missing config, default value Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> --------- Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
- Loading branch information
1 parent
a05b6c6
commit b0581a9
Showing
4 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
...fig/perception/object_recognition/tracking/multi_object_tracker/input_channels.param.yaml
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/**: | ||
ros__parameters: | ||
input_channels: | ||
detected_objects: | ||
topic: "/perception/object_recognition/detection/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "detected_objects" | ||
short_name: "all" | ||
# LIDAR - rule-based | ||
lidar_clustering: | ||
topic: "/perception/object_recognition/detection/clustering/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "clustering" | ||
short_name: "Lcl" | ||
# LIDAR - DNN | ||
lidar_centerpoint: | ||
topic: "/perception/object_recognition/detection/centerpoint/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "centerpoint" | ||
short_name: "Lcp" | ||
lidar_centerpoint_validated: | ||
topic: "/perception/object_recognition/detection/centerpoint/validation/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "centerpoint" | ||
short_name: "Lcp" | ||
lidar_apollo: | ||
topic: "/perception/object_recognition/detection/apollo/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "apollo" | ||
short_name: "Lap" | ||
lidar_apollo_validated: | ||
topic: "/perception/object_recognition/detection/apollo/validation/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "apollo" | ||
short_name: "Lap" | ||
# LIDAR-CAMERA - DNN | ||
# cspell:ignore lidar_pointpainitng pointpainting | ||
lidar_pointpainitng: | ||
topic: "/perception/object_recognition/detection/pointpainting/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "pointpainting" | ||
short_name: "Lpp" | ||
lidar_pointpainting_validated: | ||
topic: "/perception/object_recognition/detection/pointpainting/validation/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "pointpainting" | ||
short_name: "Lpp" | ||
# CAMERA-LIDAR | ||
camera_lidar_fusion: | ||
topic: "/perception/object_recognition/detection/clustering/camera_lidar_fusion/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "camera_lidar_fusion" | ||
short_name: "CLf" | ||
# CAMERA-LIDAR+TRACKER | ||
detection_by_tracker: | ||
topic: "/perception/object_recognition/detection/detection_by_tracker/objects" | ||
can_spawn_new_tracker: false | ||
optional: | ||
name: "detection_by_tracker" | ||
short_name: "dbT" | ||
# RADAR | ||
radar: | ||
topic: "/sensing/radar/detected_objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "radar" | ||
short_name: "R" | ||
radar_far: | ||
topic: "/perception/object_recognition/detection/radar/far_objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "radar_far" | ||
short_name: "Rf" |
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
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
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