diff --git a/app.py b/app.py index ae5602e..e6c8f60 100644 --- a/app.py +++ b/app.py @@ -31,7 +31,7 @@ try: confidence = float(weights[i]) if (confidence > treashold): face_roi = img[y:y+h, x:x+w] - blurred_face = cv2.GaussianBlur(face_roi, (99, 99), 20) + blurred_face = cv2.GaussianBlur(face_roi, (99, 99), 50) img[y:y+h, x:x+w] = blurred_face print(weights[i])