forked from autowarefoundation/autoware_universe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobject_association_merger.schema.json
66 lines (66 loc) · 1.93 KB
/
object_association_merger.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for Object Association Merger Node",
"type": "object",
"definitions": {
"object_association_merger": {
"type": "object",
"properties": {
"sync_queue_size": {
"type": "integer",
"description": "The size of the synchronization queue.",
"default": 20
},
"precision_threshold_to_judge_overlapped": {
"type": "number",
"description": "The precision threshold to judge if objects are overlapped.",
"default": 0.4
},
"recall_threshold_to_judge_overlapped": {
"type": "number",
"description": "The recall threshold to judge if objects are overlapped.",
"default": 0.5
},
"remove_overlapped_unknown_objects": {
"type": "boolean",
"description": "Flag to remove overlapped unknown objects.",
"default": true
},
"base_link_frame_id": {
"type": "string",
"description": "The frame ID of the association frame.",
"default": "base_link"
},
"priority_mode": {
"type": "integer",
"description": "Index for the priority_mode.",
"default": 3,
"enum": [0, 1, 2, 3]
}
},
"required": [
"sync_queue_size",
"precision_threshold_to_judge_overlapped",
"recall_threshold_to_judge_overlapped",
"remove_overlapped_unknown_objects",
"base_link_frame_id",
"priority_mode"
],
"additionalProperties": false
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/object_association_merger"
}
},
"required": ["ros__parameters"],
"additionalProperties": false
}
},
"required": ["/**"],
"additionalProperties": false
}