Format code
This commit is contained in:
parent
504ccb6695
commit
259cc8f200
|
@ -216,8 +216,7 @@ def main():
|
|||
# May be better to check every iteration, but this also works
|
||||
if path_to_faces_exists:
|
||||
if face_details := utils.recognize_face(
|
||||
path_to_directory=path_to_faces,
|
||||
run_frame=run_frame
|
||||
path_to_directory=path_to_faces, run_frame=run_frame
|
||||
):
|
||||
plot_boxes.append(face_details)
|
||||
objects_and_peoples = notify.thing_detected(
|
||||
|
|
|
@ -102,7 +102,6 @@ def recognize_face(
|
|||
print("representations_arcface.pkl does not exist")
|
||||
first_face_try = False
|
||||
|
||||
|
||||
# face_dataframes is a vanilla list of dataframes
|
||||
# It seems face_dataframes is empty if the face database (directory) doesn't exist. Seems to work if it's empty though
|
||||
# This line is here to prevent a crash if that happens. However, there is a check in __main__ so it shouldn't happen
|
||||
|
@ -117,7 +116,8 @@ def recognize_face(
|
|||
silent=True,
|
||||
# Could use VGG-Face, but whilst fixing another issue, ArcFace seemed to be slightly faster
|
||||
# I read somewhere that opencv is the fastest (but not as accurate). Could be changed later, but opencv seems to work well
|
||||
model_name="ArcFace", detector_backend="opencv"
|
||||
model_name="ArcFace",
|
||||
detector_backend="opencv",
|
||||
)
|
||||
except ValueError as e:
|
||||
if (
|
||||
|
|
Loading…
Reference in New Issue