forked from autowarefoundation/autoware_universe
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcovariance_covariance_estimation.json
49 lines (48 loc) · 1.84 KB
/
covariance_covariance_estimation.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for Ndt Scan Matcher Node",
"definitions": {
"covariance_estimation": {
"type": "object",
"properties": {
"covariance_estimation_type": {
"type": "number",
"description": "2D Real-time Converged estimation type. 0=FIXED_VALUE, 1=LAPLACE_APPROXIMATION, 2=MULTI_NDT, 3=MULTI_NDT_SCORE (FIXED_VALUE mode does not perform 2D Real-time Converged estimation)",
"default": 0,
"minimum": 0,
"maximum": 3
},
"initial_pose_offset_model_x": {
"type": "array",
"description": "Offset arrangement in covariance estimation [m]. initial_pose_offset_model_x & initial_pose_offset_model_y must have the same number of elements.",
"default": [0.0, 0.0, 0.5, -0.5, 1.0, -1.0]
},
"initial_pose_offset_model_y": {
"type": "array",
"description": "Offset arrangement in covariance estimation [m]. initial_pose_offset_model_x & initial_pose_offset_model_y must have the same number of elements.",
"default": [0.5, -0.5, 0.0, 0.0, 0.0, 0.0]
},
"temperature": {
"type": "number",
"description": "In MULTI_NDT_SCORE, the parameter that adjusts the estimated 2D covariance",
"default": 0.05,
"exclusiveMinimum": 0
},
"scale_factor": {
"type": "number",
"description": "Scale value for adjusting the estimated covariance by a constant multiplication",
"default": 1.0,
"exclusiveMinimum": 0
}
},
"required": [
"covariance_estimation_type",
"initial_pose_offset_model_x",
"initial_pose_offset_model_y",
"temperature",
"scale_factor"
],
"additionalProperties": false
}
}
}