-
Notifications
You must be signed in to change notification settings - Fork 0
/
camera.py
30 lines (20 loc) · 819 Bytes
/
camera.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
import cv2
face_detector = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
video_capture = cv2.VideoCapture(0)
while True:
# Capture frame-by-frame
ret, frame = video_capture.read()
image_gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
detections = face_detector.detectMultiScale(image_gray, minSize=(100, 100),
minNeighbors=5)
# Draw a rectangle around the faces
for (x, y, w, h) in detections:
print(w, h)
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()