AG_Motion_detection / thresholds.py
sancho10's picture
Updated app with new features
07e6c6b
# Get thresholds for beginner mode
def get_thresholds_beginner():
_ANGLE_HIP_KNEE_VERT = {
'NORMAL' : (0, 30),
'TRANS' : (35, 65),
'PASS' : (70, 95)
}
thresholds = {
'HIP_KNEE_VERT': _ANGLE_HIP_KNEE_VERT,
'HIP_THRESH' : [10, 60],
'ANKLE_THRESH' : 45,
'KNEE_THRESH' : [50, 70, 95],
'OFFSET_THRESH' : 50.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, 30),
'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' : 50.0,
'INACTIVE_THRESH' : 15.0,
'CNT_FRAME_THRESH' : 50
}
return thresholds