opencv人脸识别

import cv2
import sys

cascPath="./haarcascade_frontalface_alt2.xml"
faceCascade = cv2.CascadeClassifier(cascPath)

video_capture = cv2.VideoCapture(0)
while True:
   # Capture frame-by-frame
   ret, frame = video_capture.read()
   gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
   faces = faceCascade.detectMultiScale(
       gray,
       scaleFactor=1.1,
       minNeighbors=3,
       minSize=(30, 30)
   )
   # Draw a rectangle around the faces
   for (x, y, w, h) in faces: 
      cv2.rectangle(frame, (x, y), (x+w, y+h), (0, 255, 0), 2)
   # Display the resulting frame
   cv2.imshow('Video', frame)
   if cv2.waitKey(1) & 0xFF == ord('q'):
       break
# When everything is done, release the capture
video_capture.release()
cv2.destroyAllWindows()
相关文件在 https://gitee.com/wangkingking/opencvRenLianShiBie/tree/master

猜你喜欢

转载自blog.csdn.net/lingdongtianxia/article/details/79285835
今日推荐