-
Notifications
You must be signed in to change notification settings - Fork 682
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_radar_tracks_noise_filter): Created Schema file and upd…
…ated ReadME file for parameters setting (#9992) * feat: Created Schema file and updated ReadME file for parameters settings Signed-off-by: vish0012 <[email protected]> * Update radar_tracks_noise_filter.param.yaml * style(pre-commit): autofix * fix: updated launch and schema for autoware_radar_tracks_noise_filter as per review comments Signed-off-by: vish0012 <[email protected]> * Update README.md Updated README File --------- Signed-off-by: vish0012 <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0f2bf09
commit 9d965fb
Showing
3 changed files
with
38 additions
and
7 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
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
33 changes: 33 additions & 0 deletions
33
sensing/autoware_radar_tracks_noise_filter/schema/radar_tracks_noise_filter.schema.json
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,33 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "autoware_radar_tracks_noise_filter parameters", | ||
"type": "object", | ||
"definitions": { | ||
"autoware_radar_tracks_noise_filter": { | ||
"type": "object", | ||
"properties": { | ||
"velocity_y_threshold": { | ||
"type": "number", | ||
"description": "If the y-axis velocity of a RadarTrack exceeds `velocity_y_threshold`, it is treated as a noise object.", | ||
"default": 7.0 | ||
} | ||
}, | ||
"required": ["velocity_y_threshold"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"properties": { | ||
"/**": { | ||
"type": "object", | ||
"properties": { | ||
"ros__parameters": { | ||
"$ref": "#/definitions/autoware_radar_tracks_noise_filter" | ||
} | ||
}, | ||
"required": ["ros__parameters"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": ["/**"], | ||
"additionalProperties": false | ||
} |