From 5785d3908f33fbccb862d3632319f85927eddc97 Mon Sep 17 00:00:00 2001 From: Ibrahim Essam Date: Thu, 20 Dec 2018 17:02:34 +0200 Subject: [PATCH] Update README Defining a threshold variable in the python example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1dc5f4f..79b8595 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ from faced import FaceDetector from faced.utils import annotate_image face_detector = FaceDetector() - +thresh = 0.5 img = cv2.imread(img_path) rgb_img = cv2.cvtColor(img.copy(), cv2.COLOR_BGR2RGB)