I have recently used OpenCV to do face recognition with the raspi. I have done it using a haar cascade. It is not fast at updating the live video with the box around a face. It freezes on a certain frame which is about 10 seconds behind and then updates to another frozen image which is still behind. I was wondering how I would speed it up so it looks like live video with the boxes around the face.
Code:
import cv2
import numpy as np
cap = cv2.VideoCapture(0)
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
while True:
ret, frame = cap.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
for (x,y,w,h) in faces:
cv2.rectangle(frame, (x,y), (x+w,y+h), (255,0,0),2)
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()