Update verification.py

This commit is contained in:
Daniel Goodwin 2025-06-19 10:58:23 +01:00 committed by GitHub
parent 4ac3f07510
commit 9652951f0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -164,7 +164,6 @@ def verify(
img_embeddings = [img_path]
img_facial_areas = [no_facial_area]
else:
try:
img_embeddings, img_facial_areas = __extract_faces_and_embeddings(
img_path=img_path,
model_name=model_name,
@ -175,8 +174,6 @@ def verify(
normalization=normalization,
anti_spoofing=anti_spoofing,
)
except ValueError as err:
raise ValueError(f"Exception while processing img{index}_path") from err
return img_embeddings, img_facial_areas
img1_embeddings, img1_facial_areas = extract_embeddings_and_facial_areas(img1_path, 1)