-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlur(Haar).py
39 lines (33 loc) · 1.07 KB
/
Blur(Haar).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
39
import cv2
cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
def find_and_blur(bw, color):
# detect al faces
faces = cascade.detectMultiScale(bw, 1.1, 4)
# get the locations of the faces
for (x, y, w, h) in faces:
# select the areas where the face was found
roi_color = color[y:y+h, x:x+w]
# blur the colored image
blur = cv2.GaussianBlur(roi_color, (101,101), 0)
# Insert ROI back into image
color[y:y+h, x:x+w] = blur
# return the blurred image
return color
# turn camera on
video_capture = cv2.VideoCapture(0)
while True:
# get last recorded frame
_, color = video_capture.read()
# transform color -> grayscale
bw = cv2.cvtColor(color, cv2.COLOR_BGR2GRAY)
# detect the face and blur it
blur = find_and_blur(bw, color)
# display output
cv2.imshow('Video', blur)
# break if q is pressed
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# turn camera off
video_capture.release()
# close camera window
cv2.destroyAllWindows()