iDrops commited on
Commit
dcec4dc
·
verified ·
1 Parent(s): 5673f88

Create thresholds.py

Browse files
Files changed (1) hide show
  1. thresholds.py +53 -0
thresholds.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Get thresholds for beginner mode
2
+ def get_thresholds_beginner():
3
+
4
+ _ANGLE_HIP_KNEE_VERT = {
5
+ 'NORMAL' : (0, 30),
6
+ 'TRANS' : (35, 65),
7
+ 'PASS' : (70, 95)
8
+ }
9
+
10
+
11
+ thresholds = {
12
+ 'HIP_KNEE_VERT': _ANGLE_HIP_KNEE_VERT,
13
+
14
+ 'HIP_THRESH' : [10, 60],
15
+ 'ANKLE_THRESH' : 45,
16
+ 'KNEE_THRESH' : [50, 70, 95],
17
+
18
+ 'OFFSET_THRESH' : 50.0,
19
+ 'INACTIVE_THRESH' : 15.0,
20
+
21
+ 'CNT_FRAME_THRESH' : 50
22
+
23
+ }
24
+
25
+ return thresholds
26
+
27
+
28
+
29
+ # Get thresholds for beginner mode
30
+ def get_thresholds_pro():
31
+
32
+ _ANGLE_HIP_KNEE_VERT = {
33
+ 'NORMAL' : (0, 30),
34
+ 'TRANS' : (35, 65),
35
+ 'PASS' : (80, 95)
36
+ }
37
+
38
+
39
+ thresholds = {
40
+ 'HIP_KNEE_VERT': _ANGLE_HIP_KNEE_VERT,
41
+
42
+ 'HIP_THRESH' : [15, 50],
43
+ 'ANKLE_THRESH' : 30,
44
+ 'KNEE_THRESH' : [50, 80, 95],
45
+
46
+ 'OFFSET_THRESH' : 50.0,
47
+ 'INACTIVE_THRESH' : 15.0,
48
+
49
+ 'CNT_FRAME_THRESH' : 50
50
+
51
+ }
52
+
53
+ return thresholds