From 58bafa4610735ea4b0c4c4934a2927f5f0d08e36 Mon Sep 17 00:00:00 2001 From: Miguel Sozinho Ramalho <19508417+msramalho@users.noreply.github.com> Date: Mon, 1 Aug 2022 17:06:07 +0100 Subject: [PATCH] minor typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbb308a..1169788 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ A modern [**face recognition pipeline**](https://sefiks.com/2020/05/01/a-gentle- **Face Verification** - [`Demo`](https://youtu.be/KRCvkNCOphE) -This function verifies face pairs as same person or different persons. It expects exact image paths as inputs. Passing numpy or based64 encoded images is also welcome. Then, it is going to return a dictionary and you should check just its verified key. +This function verifies face pairs as same person or different persons. It expects exact image paths as inputs. Passing numpy or base64 encoded images is also welcome. Then, it is going to return a dictionary and you should check just its verified key. ```python result = DeepFace.verify(img1_path = "img1.jpg", img2_path = "img2.jpg") @@ -181,7 +181,7 @@ You can find out more about RetinaFace on this [repo](https://github.com/serengi **Real Time Analysis** - [`Demo`](https://youtu.be/-c9sSJcx6wI) -You can run deepface for real time videos as well. Stream function will access your webcam and apply both face recognition and facial attribute analysis. The function starts to analyze a frame if it can focus a face sequantially 5 frames. Then, it shows results 5 seconds. +You can run deepface for real time videos as well. Stream function will access your webcam and apply both face recognition and facial attribute analysis. The function starts to analyze a frame if it can focus a face sequentially 5 frames. Then, it shows results 5 seconds. ```python DeepFace.stream(db_path = "C:/User/Sefik/Desktop/database")