From 394c34f470a31afa5264c2d547ce984606f72b21 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Sun, 6 Sep 2020 08:17:38 +0300 Subject: [PATCH] detectors --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9548405..b3a9b76 100644 --- a/README.md +++ b/README.md @@ -105,9 +105,10 @@ Face detection and face alignment are early stages of a modern face recognition ```python backends = ['opencv', 'ssd', 'dlib', 'mtcnn'] for backend in backends: - obj = DeepFace.verify("img1.jpg", "img2.jpg", detector_backend = backend) - df = DeepFace.find(img_path = "img.jpg", db_path = "my_db", detector_backend = backend) - demography = DeepFace.analyze("img4.jpg", , detector_backend = backend) + detected_face = DeepFace.detectFace("img.jpg", detector_backend = backend) #detectors in face detection and alignment + obj = DeepFace.verify("img1.jpg", "img2.jpg", detector_backend = backend) #detectors in verification + df = DeepFace.find(img_path = "img.jpg", db_path = "my_db", detector_backend = backend) #detectors in face recognition + demography = DeepFace.analyze("img4.jpg", , detector_backend = backend) #detectors in facial analysis ``` **Streaming and Real Time Analysis** - [`Demo`](https://youtu.be/-c9sSJcx6wI)