-
Notifications
You must be signed in to change notification settings - Fork 673
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: oguzkaganozt <[email protected]>
- Loading branch information
1 parent
41aab51
commit fad5e71
Showing
4 changed files
with
46 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Localization Evaluator | ||
|
||
TBD | ||
The Localization Evaluator evaluates the performance of the localization system and provides metrics | ||
|
||
## Parameters | ||
|
||
{{ json_to_markdown("evaluator/localization_evaluator/schema/localization_evaluator.schema.json") }} |
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
evaluator/localization_evaluator/launch/localization_evaluator.launch.xml
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
39 changes: 39 additions & 0 deletions
39
evaluator/localization_evaluator/schema/localization_evaluator.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,39 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Parameters for Localization Evaluator", | ||
"type": "object", | ||
"definitions": { | ||
"localization_evaluator": { | ||
"type": "object", | ||
"properties": { | ||
"output_file": { | ||
"type": "string", | ||
"default": "loc_metrics.results", | ||
"description": "if empty, metrics are not written to file" | ||
}, | ||
"selected_metrics": { | ||
"type": "array", | ||
"default": "['lateral_error', 'absolute_error']", | ||
"description": "metrics to be calculated" | ||
} | ||
}, | ||
"required": [ | ||
"output_file", | ||
"selected_metrics" | ||
] | ||
} | ||
}, | ||
"properties": { | ||
"/**": { | ||
"type": "object", | ||
"properties": { | ||
"ros__parameters": { | ||
"$ref": "#/definitions/localization_evaluator" | ||
} | ||
}, | ||
"required": ["ros__parameters"] | ||
} | ||
}, | ||
"required": ["/**"] | ||
} | ||
|