Skip to content

Commit

Permalink
refactor(autoware_multi_object_tracker): update schema file
Browse files Browse the repository at this point in the history
Signed-off-by: jkoronczok <jkoronczok@autonomous-systems.pl>
  • Loading branch information
jakor97 committed Dec 12, 2024
1 parent e82ca79 commit 986a0e4
Showing 1 changed file with 69 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,69 @@
"description": "If True, tracker use timers to schedule publishers and use prediction step to extrapolate object state at desired timestamp.",
"default": false
},
"consider_odometry_uncertainty": {
"type": "boolean",
"description": "If True, consider odometry uncertainty in tracking.",
"default": false
},
"tracker_lifetime": {
"type": "number",
"description": "Lifetime of the tracker in seconds.",
"default": 1.0
},
"min_known_object_removal_iou": {
"type": "number",
"description": "Minimum IOU between associated objects with known label to remove younger tracker",
"default": 0.1
},
"min_unknown_object_removal_iou": {
"type": "number",
"description": "Minimum IOU between associated objects with unknown label to remove unknown tracker",
"default": 0.001
},
"distance_threshold": {
"type": "number",
"description": "Distance threshold in meters.",
"default": 5.0
},
"confident_count_threshold": {
"type": "object",
"properties": {
"UNKNOWN": {
"type": "number",
"default": 3
},
"CAR": {
"type": "number",
"default": 3
},
"TRUCK": {
"type": "number",
"default": 3
},
"BUS": {
"type": "number",
"default": 3
},
"TRAILER": {
"type": "number",
"default": 3
},
"MOTORBIKE": {
"type": "number",
"default": 3
},
"BICYCLE": {
"type": "number",
"default": 3
},
"PEDESTRIAN": {
"type": "number",
"default": 3
}
},
"description": "Number of measurements to consider tracker as confident for different object classes."
},
"publish_processing_time": {
"type": "boolean",
"description": "Enable to publish debug message of process time information.",
Expand Down Expand Up @@ -93,6 +156,12 @@
"publish_rate",
"world_frame_id",
"enable_delay_compensation",
"consider_odometry_uncertainty",
"tracker_lifetime",
"min_known_object_removal_iou",
"min_unknown_object_removal_iou",
"distance_threshold",
"confident_count_threshold",
"publish_processing_time",
"publish_tentative_objects",
"publish_debug_markers",
Expand Down

0 comments on commit 986a0e4

Please sign in to comment.