-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.json
44 lines (41 loc) · 1.11 KB
/
Settings.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
{
"DecideElevateProb": 0.75,
"DecideTranslateProb": 0.6,
"DecideRotateProb": 0.2,
/* Строка - истинный класс, столбец - предполагаемый
Person,
Cooler,
Desk,
Elevator,
Plant,
Sofa,
Wall,
Window,
Empty,
Unknown
*/
"ConfusionMatrix": [
[ 910, 10, 10, 10, 10, 10, 10, 10, 10, 10 ],
[ 10, 910, 10, 10, 10, 10, 10, 10, 10, 10 ],
[ 10, 10, 910, 10, 10, 10, 10, 10, 10, 10 ],
[ 10, 10, 10, 910, 10, 10, 10, 10, 10, 10 ],
[ 10, 10, 10, 10, 910, 10, 10, 10, 10, 10 ],
[ 10, 10, 10, 10, 10, 910, 10, 10, 10, 10 ],
[ 10, 10, 10, 10, 10, 10, 910, 10, 10, 10 ],
[ 10, 10, 10, 10, 10, 10, 10, 910, 10, 10 ],
[ 10, 10, 10, 10, 10, 10, 10, 10, 910, 10 ],
[ 10, 10, 10, 10, 10, 10, 10, 10, 10, 910 ]
],
"CameraSuccessStd": 0.97,
"ElevationSuccessProb": 0.8,
"TranslationStd": 0.25,
"TranslationWetnessFactor": 0.1,
"TranslationDistanceFactor": 0.5,
"RotationStd": 0.25,
"RotationWetnessFactor": 0.1,
"RotationAngleFactor": 0.5,
"EstimatedElevationStd": 0.5,
"EstimatedTranslationStd": 0.4,
"EstimatedRotationStd": 0.4,
"EstimatedCameraSuccessProb": 0.97
}