-
Notifications
You must be signed in to change notification settings - Fork 0
/
realtime_face_eye_detection.py
38 lines (29 loc) · 1.09 KB
/
realtime_face_eye_detection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# importing necessary library
import cv2 as cv
import numpy as np
#loading cascading class
face_cascade = cv.CascadeClassifier("haarcascades\haarcascade_frontalface_default.xml")
eye_cascade = cv.CascadeClassifier("haarcascades\haarcascade_eye.xml")
#capturing video through webcam
video_capture = cv.VideoCapture(0)
# reading all frames through webcam
while True:
ret, frame = video_capture.read()
#video feed should be flipped so that it appears mirror like
frame = cv.flip(frame,1)
gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY)
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
for (x,y,w,h) in faces:
cv.rectangle(frame, (x,y), (x+w,y+h), (255,0,0), 2)
region_gray = gray[y:y+h, x:x+w]
region_color = frame[y:y+h, x:x+w]
eyes = eye_cascade.detectMultiScale(region_gray)
for (ex,ey,ew,eh) in eyes:
cv.rectangle(region_color, (ex,ey), (ex+ew,ey+eh), (0,255,0),2)
cv.imshow('Video', frame)
if(cv.waitKey(1) & 0xFF == ord('q')):
break
#release video capture
video_capture.release()
cv.waitKey(0)
cv.destroyAllWindows()