HamzaFunavry
Results
1
issues of
HamzaFunavry
def detectFace(image, net): image = cv2.imread(image) (h, w) = image.shape[:2] blob = cv2.dnn.blobFromImage(cv2.resize(image, (300, 300)), 1.0, (300, 300), (104.0, 177.0, 123.0)) net.setInput(blob) detections = net.forward() print(len(detections)) flag = False for...