Merge pull request #1279 from ProgramadorArtificial/feature/custom_output_extract_faces

Feature/custom output extract faces
This commit is contained in:
Sefik Ilkin Serengil 2024-07-15 15:35:59 +01:00 committed by GitHub
commit 7a5f24955a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 38 additions and 7 deletions

View File

@ -483,6 +483,8 @@ def extract_faces(
align: bool = True,
expand_percentage: int = 0,
grayscale: bool = False,
color_face: str = 'rgb',
normalize_face: bool = True,
anti_spoofing: bool = False,
) -> List[Dict[str, Any]]:
"""
@ -503,9 +505,15 @@ def extract_faces(
expand_percentage (int): expand detected facial area with a percentage (default is 0).
grayscale (boolean): Flag to convert the output face image to grayscale
grayscale (boolean): (Deprecated) Flag to convert the output face image to grayscale
(default is False).
color_face (string): Color to return face image output. Options: 'rgb', 'bgr' or 'gray'
(default is 'rgb').
normalize_face (boolean): Flag to enable normalization (divide by 255) of the output
face image output face image normalization (default is True).
anti_spoofing (boolean): Flag to enable anti spoofing (default is False).
Returns:
@ -535,6 +543,8 @@ def extract_faces(
align=align,
expand_percentage=expand_percentage,
grayscale=grayscale,
color_face=color_face,
normalize_face=normalize_face,
anti_spoofing=anti_spoofing,
)
@ -584,9 +594,9 @@ def detectFace(
face_objs = extract_faces(
img_path=img_path,
detector_backend=detector_backend,
grayscale=False,
enforce_detection=enforce_detection,
align=align,
grayscale=False,
)
extracted_face = None
if len(face_objs) > 0:

View File

@ -123,8 +123,8 @@ def analyze(
img_objs = detection.extract_faces(
img_path=img_path,
detector_backend=detector_backend,
grayscale=False,
enforce_detection=enforce_detection,
grayscale=False,
align=align,
expand_percentage=expand_percentage,
anti_spoofing=anti_spoofing,

View File

@ -25,6 +25,8 @@ def extract_faces(
align: bool = True,
expand_percentage: int = 0,
grayscale: bool = False,
color_face: str = 'rgb',
normalize_face: bool = True,
anti_spoofing: bool = False,
) -> List[Dict[str, Any]]:
"""
@ -43,11 +45,17 @@ def extract_faces(
align (bool): Flag to enable face alignment (default is True).
expand_percentage (int): expand detected facial area with a percentage
expand_percentage (int): expand detected facial area with a percentage.
grayscale (boolean): Flag to convert the output face image to grayscale
grayscale (boolean): (Deprecated) Flag to convert the output face image to grayscale
(default is False).
color_face (string): Color to return face image output. Options: 'rgb', 'bgr' or 'gray'
(default is 'rgb').
normalize_face (boolean): Flag to enable normalization (divide by 255) of the output
face image output face image normalization (default is True).
anti_spoofing (boolean): Flag to enable anti spoofing (default is False).
Returns:
@ -115,9 +123,22 @@ def extract_faces(
continue
if grayscale is True:
logger.warn("Parameter grayscale is deprecated. Use color_face instead.")
current_img = cv2.cvtColor(current_img, cv2.COLOR_BGR2GRAY)
else:
if color_face == 'rgb':
current_img = current_img[:, :, ::-1]
elif color_face == 'bgr':
pass # image is in BGR
elif color_face == 'gray':
current_img = cv2.cvtColor(current_img, cv2.COLOR_BGR2GRAY)
else:
raise ValueError(
f"The color_face can be rgb, bgr or gray, but it is {color_face}."
)
current_img = current_img / 255 # normalize input in [0, 1]
if normalize_face:
current_img = current_img / 255 # normalize input in [0, 1]
x = int(current_region.x)
y = int(current_region.y)
@ -125,7 +146,7 @@ def extract_faces(
h = int(current_region.h)
resp_obj = {
"face": current_img if grayscale else current_img[:, :, ::-1],
"face": current_img,
"facial_area": {
"x": x,
"y": y,