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

docs(autoware_multi_object_tracker): update input_channels schema with default values #8473

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
Expand Up @@ -8,22 +8,26 @@
"properties": {
"topic": {
"type": "string",
"description": "The ROS topic name for the input channel."
"description": "The ROS topic name for the input channel.",
"default": "/perception/object_recognition/detection/objects"
},
"can_spawn_new_tracker": {
"type": "boolean",
"description": "Indicates if the input channel can spawn new trackers."
"description": "Indicates if the input channel can spawn new trackers.",
"default": true
},
"optional": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the input channel."
"description": "The name of the input channel.",
"default": "detected_objects"
},
"short_name": {
"type": "string",
"description": "The short name of the input channel."
"description": "The short name of the input channel.",
"default": "all"
}
}
}
Expand Down Expand Up @@ -107,7 +111,7 @@
}
}
},
"lidar_pointpainitng": {

Check warning on line 114 in perception/autoware_multi_object_tracker/schema/input_channels.schema.json

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (pointpainitng)
"$ref": "#/definitions/input_channel",
"default": {
"topic": "/perception/object_recognition/detection/pointpainting/objects",
Expand Down Expand Up @@ -181,7 +185,7 @@
"lidar_centerpoint_validated",
"lidar_apollo",
"lidar_apollo_validated",
"lidar_pointpainitng",

Check warning on line 188 in perception/autoware_multi_object_tracker/schema/input_channels.schema.json

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (pointpainitng)
"lidar_pointpainting_validated",
"camera_lidar_fusion",
"detection_by_tracker",
Expand Down
Loading