Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(multi_object_tracker): add input channel flags for selective update per channel #1364

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -3,80 +3,134 @@
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
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: false
can_trust_extension: false
can_trust_classification: false
can_trust_orientation: false
optional:
name: "clustering"
short_name: "Lcl"
# LIDAR - DNN
lidar_centerpoint:
topic: "/perception/object_recognition/detection/centerpoint/objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: true
can_trust_classification: true
can_trust_orientation: true
optional:
name: "centerpoint"
short_name: "Lcp"
lidar_centerpoint_validated:
topic: "/perception/object_recognition/detection/centerpoint/validation/objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: true
can_trust_classification: true
can_trust_orientation: true
optional:
name: "centerpoint"
short_name: "Lcp"
lidar_apollo:
topic: "/perception/object_recognition/detection/apollo/objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: true
can_trust_classification: true
can_trust_orientation: true
optional:
name: "apollo"
short_name: "Lap"
lidar_apollo_validated:
topic: "/perception/object_recognition/detection/apollo/validation/objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: true
can_trust_classification: true
can_trust_orientation: true
optional:
name: "apollo"
short_name: "Lap"
# LIDAR-CAMERA - DNN
# cspell:ignore lidar_pointpainting pointpainting
lidar_pointpainting:
topic: "/perception/object_recognition/detection/pointpainting/objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: true
can_trust_classification: true
can_trust_orientation: true
optional:
name: "pointpainting"
short_name: "Lpp"
lidar_pointpainting_validated:
topic: "/perception/object_recognition/detection/pointpainting/validation/objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: true
can_trust_classification: true
can_trust_orientation: 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
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: false
can_trust_extension: false
can_trust_classification: true
can_trust_orientation: false
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
flags:
can_spawn_new_tracker: false
can_trust_existence_probability: false
can_trust_extension: false
can_trust_classification: false
can_trust_orientation: false
optional:
name: "detection_by_tracker"
short_name: "dbT"
# RADAR
radar:
topic: "/sensing/radar/detected_objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: false
can_trust_classification: true
can_trust_orientation: false
optional:
name: "radar"
short_name: "R"
radar_far:
topic: "/perception/object_recognition/detection/radar/far_objects"
can_spawn_new_tracker: true
flags:
can_spawn_new_tracker: true
can_trust_existence_probability: true
can_trust_extension: false
can_trust_classification: true
can_trust_orientation: false
optional:
name: "radar_far"
short_name: "Rf"