Slight adjustment

This commit is contained in:
Nicolas Mowen 2025-06-18 14:46:37 -06:00
parent 3857972d20
commit 77e3e5d6f2

View File

@ -122,6 +122,8 @@ class FaceRecognizer(ABC):
return 0.04
elif variance < 200: # image is slightly blurry
return 0.02
elif variance < 250: # image is mostly clear
return 0.01
else:
return 0.0