-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththresholds.py
55 lines (34 loc) · 1.41 KB
/
thresholds.py
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
# Get thresholds for beginner mode
def get_thresholds_beginner():
_ANGLE_HIP_KNEE_VERT = {
'NORMAL' : (0, 32),
'TRANS' : (35, 65),
'PASS' : (70, 95)
}
thresholds = {
'HIP_KNEE_VERT': _ANGLE_HIP_KNEE_VERT,
'HIP_THRESH' : [10, 50],
'ANKLE_THRESH' : 45,
'KNEE_THRESH' : [50, 70, 95],
'OFFSET_THRESH' : 35.0,
'INACTIVE_THRESH' : 15.0,
'CNT_FRAME_THRESH' : 50
}
return thresholds
# Get thresholds for beginner mode
def get_thresholds_pro():
_ANGLE_HIP_KNEE_VERT = {
'NORMAL' : (0, 32),
'TRANS' : (35, 65),
'PASS' : (80, 95)
}
thresholds = {
'HIP_KNEE_VERT': _ANGLE_HIP_KNEE_VERT,
'HIP_THRESH' : [15, 50],
'ANKLE_THRESH' : 30,
'KNEE_THRESH' : [50, 80, 95],
'OFFSET_THRESH' : 35.0,
'INACTIVE_THRESH' : 15.0,
'CNT_FRAME_THRESH' : 50
}
return thresholds