renlian 0.46

This commit is contained in:
caoqianming 2022-04-22 14:15:08 +08:00
parent 3b810f83fd
commit 74efc14911
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class HRMService:
face_datas = cache.get('face_datas')
face_users = cache.get('face_users')
results = face_recognition.compare_faces(face_datas,
unknown_face_encoding, tolerance=0.45)
unknown_face_encoding, tolerance=0.46)
for index, value in enumerate(results):
if value:
# 识别成功
@ -56,7 +56,7 @@ class HRMService:
face_datas = cache.get('face_datas')
face_users = cache.get('face_users')
results = face_recognition.compare_faces(face_datas,
unknown_face_encoding, tolerance=0.45)
unknown_face_encoding, tolerance=0.46)
for index, value in enumerate(results):
if value:
# 识别成功