From 8924a343a1525c38bf1fd9ff4a2fcb0b502434c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Gonz=C3=A1lez=20Calleja?= Date: Wed, 19 Jun 2019 22:54:50 +0200 Subject: [PATCH] Add tolerance to dlib face identify (#9661) * Documentation for tolerance parameter * Change type to float and removing optional parameter from example configuration * :pencil2: Removal of unneeded newline --- source/_components/dlib_face_identify.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/_components/dlib_face_identify.markdown b/source/_components/dlib_face_identify.markdown index 1a496513195..3efb0ac8179 100644 --- a/source/_components/dlib_face_identify.markdown +++ b/source/_components/dlib_face_identify.markdown @@ -50,6 +50,11 @@ faces: description: List of faces sources. required: true type: list +confidence: + description: How much distance between faces to consider it a match. Using tolerance values lower than 0.6 will make the comparison more strict. + required: false + type: float + default: 0.6 {% endconfiguration %}