From 37a427a1494af9ae9fdda4880ddcaafd22f35b80 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Tue, 11 Feb 2020 08:29:36 +0300 Subject: [PATCH] verify tuple --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c416916..5985cb3 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,8 @@ You can just check the verification result to decide that two images are same pe ```python verified = result[0] #returns True if images are same person's face +found_distance = result[1] #distance of two face vectors +max_threshold_to_verify = result[2] #faces have a distance less than this value will be verified ``` Instead of using pre-tuned threshold values, you can alternatively check the distance by yourself.