Remove unwanted line returns.

This commit is contained in:
Vincent STRAGIER 2023-06-23 20:33:47 +02:00
parent dc0fa0cec6
commit 16d37711d5

View File

@ -96,7 +96,6 @@ def verify(
align=True, align=True,
normalization="base", normalization="base",
): ):
""" """
This function verifies an image pair is same person or different persons. In the background, This function verifies an image pair is same person or different persons. In the background,
verification function represents facial images as vectors and then calculates the similarity verification function represents facial images as vectors and then calculates the similarity
@ -235,7 +234,6 @@ def analyze(
align=True, align=True,
silent=False, silent=False,
): ):
""" """
This function analyzes facial attributes including age, gender, emotion and race. This function analyzes facial attributes including age, gender, emotion and race.
In the background, analysis function builds convolutional neural network models to In the background, analysis function builds convolutional neural network models to
@ -410,7 +408,6 @@ def find(
normalization="base", normalization="base",
silent=False, silent=False,
): ):
""" """
This function applies verification several times and find the identities in a database This function applies verification several times and find the identities in a database
@ -628,7 +625,6 @@ def represent(
align=True, align=True,
normalization="base", normalization="base",
): ):
""" """
This function represents facial images as vectors. The function uses convolutional neural This function represents facial images as vectors. The function uses convolutional neural
networks models to generate vector embeddings. networks models to generate vector embeddings.
@ -722,7 +718,6 @@ def stream(
time_threshold=5, time_threshold=5,
frame_threshold=5, frame_threshold=5,
): ):
""" """
This function applies real time face recognition and facial attribute analysis This function applies real time face recognition and facial attribute analysis
@ -777,7 +772,6 @@ def extract_faces(
align=True, align=True,
grayscale=False, grayscale=False,
): ):
""" """
This function applies pre-processing stages of a face recognition pipeline This function applies pre-processing stages of a face recognition pipeline
including detection and alignment including detection and alignment