From 9c779be3001ea6fd89e33c54d46ee5a250b55b86 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Thu, 26 Mar 2020 16:37:10 +0300 Subject: [PATCH] aim of the framework --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c78fa4..88f54e6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

-**Deepface** is a lightweight facial analysis framework including face recognition and demography (age, gender, emotion and race) for Python. Modern face recognition pipelines consist of 4 stages: detect, [align](https://sefiks.com/2020/02/23/face-alignment-for-face-recognition-in-python-within-opencv/), represent and verify. Deepface handles all these common stages in the background. You can use the framework with a just few lines of codes +**Deepface** is a lightweight facial analysis framework including face recognition and demography (age, gender, emotion and race) for Python. You can apply facial analysis with a few lines of code. It plans to bridge a gap between software engineering and machine learning studies. # Face Recognition @@ -19,6 +19,8 @@ print("Is verified: ", result["verified"])

+Modern face recognition pipelines consist of 4 stages: detect, [align](https://sefiks.com/2020/02/23/face-alignment-for-face-recognition-in-python-within-opencv/), represent and verify. Deepface handles all these common stages in the background. You can use the framework with a just few lines of codes. + Each call of verification function builds a face recognition model from scratch and this is a costly operation. If you are going to verify multiple faces sequentially, then you should pass an array of faces to verification function to speed the operation up. In this way, complex face recognition models will be built once. ```python