diff --git a/src/anti_spoof_predict.py b/src/anti_spoof_predict.py index ead08e0df8..184ef61adf 100644 --- a/src/anti_spoof_predict.py +++ b/src/anti_spoof_predict.py @@ -30,7 +30,7 @@ def __init__(self): caffemodel = "./resources/detection_model/Widerface-RetinaFace.caffemodel" deploy = "./resources/detection_model/deploy.prototxt" self.detector = cv2.dnn.readNetFromCaffe(deploy, caffemodel) - self.detector_confidence = 0.6 + # self.detector_confidence = 0.6 def get_bbox(self, img): height, width = img.shape[0], img.shape[1]