Remove call for default values

This commit is contained in:
Programador Artificial 2024-07-15 11:14:15 -03:00
parent 9300ed0dfd
commit 546675ca40
4 changed files with 0 additions and 10 deletions

View File

@ -123,8 +123,6 @@ def analyze(
img_objs = detection.extract_faces( img_objs = detection.extract_faces(
img_path=img_path, img_path=img_path,
detector_backend=detector_backend, detector_backend=detector_backend,
color_face='rgb',
normalize_face=True,
enforce_detection=enforce_detection, enforce_detection=enforce_detection,
align=align, align=align,
expand_percentage=expand_percentage, expand_percentage=expand_percentage,

View File

@ -240,8 +240,6 @@ def find(
source_objs = detection.extract_faces( source_objs = detection.extract_faces(
img_path=img_path, img_path=img_path,
detector_backend=detector_backend, detector_backend=detector_backend,
color_face='rgb',
normalize_face=True,
enforce_detection=enforce_detection, enforce_detection=enforce_detection,
align=align, align=align,
expand_percentage=expand_percentage, expand_percentage=expand_percentage,
@ -365,8 +363,6 @@ def __find_bulk_embeddings(
img_objs = detection.extract_faces( img_objs = detection.extract_faces(
img_path=employee, img_path=employee,
detector_backend=detector_backend, detector_backend=detector_backend,
color_face='rgb',
normalize_face=True,
enforce_detection=enforce_detection, enforce_detection=enforce_detection,
align=align, align=align,
expand_percentage=expand_percentage, expand_percentage=expand_percentage,

View File

@ -71,8 +71,6 @@ def represent(
img_objs = detection.extract_faces( img_objs = detection.extract_faces(
img_path=img_path, img_path=img_path,
detector_backend=detector_backend, detector_backend=detector_backend,
color_face='rgb',
normalize_face=True,
enforce_detection=enforce_detection, enforce_detection=enforce_detection,
align=align, align=align,
expand_percentage=expand_percentage, expand_percentage=expand_percentage,

View File

@ -239,8 +239,6 @@ def __extract_faces_and_embeddings(
img_objs = detection.extract_faces( img_objs = detection.extract_faces(
img_path=img_path, img_path=img_path,
detector_backend=detector_backend, detector_backend=detector_backend,
color_face='rgb',
normalize_face=True,
enforce_detection=enforce_detection, enforce_detection=enforce_detection,
align=align, align=align,
expand_percentage=expand_percentage, expand_percentage=expand_percentage,