-
Notifications
You must be signed in to change notification settings - Fork 0
/
glasses_and_stash.py
74 lines (60 loc) · 2.88 KB
/
glasses_and_stash.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import numpy as np
import cv2
from utils import CFEVideoConf, image_resize
cap = cv2.VideoCapture(0)
save_path = 'saved-media/glasses_and_stash.mp4'
frames_per_seconds = 24
config = CFEVideoConf(cap, filepath=save_path, res='720p')
out = cv2.VideoWriter(save_path, config.video_type, frames_per_seconds, config.dims)
face_cascade = cv2.CascadeClassifier('cascades/data/haarcascade_frontalface_default.xml')
eyes_cascade = cv2.CascadeClassifier('cascades/third-party/frontalEyes35x16.xml')
nose_cascade = cv2.CascadeClassifier('cascades/third-party/Nose18x15.xml')
glasses = cv2.imread("images/fun/glasses.png", -1)
mustache = cv2.imread('images/fun/mustache.png',-1)
'''
OpenCV & Python Tutorial Video Series: https://kirr.co/ijcr59
Eyes Cascade (and others): https://kirr.co/694cu1
Nose Cascade / Mustache Post: https://kirr.co/69c1le
'''
while(True):
# Capture frame-by-frame
ret, frame = cap.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
faces = face_cascade.detectMultiScale(gray, scaleFactor=1.5, minNeighbors=5)
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2BGRA)
for (x, y, w, h) in faces:
roi_gray = gray[y:y+h, x:x+h] # rec
roi_color = frame[y:y+h, x:x+h]
#cv2.rectangle(frame, (x, y), (x + w, y + h), (255, 255, 255), 3)
eyes = eyes_cascade.detectMultiScale(roi_gray, scaleFactor=1.5, minNeighbors=5)
for (ex, ey, ew, eh) in eyes:
#cv2.rectangle(roi_color, (ex, ey), (ex + ew, ey + eh), (0, 255, 0), 3)
roi_eyes = roi_gray[ey: ey + eh, ex: ex + ew]
glasses2 = image_resize(glasses.copy(), width=ew)
gw, gh, gc = glasses2.shape
for i in range(0, gw):
for j in range(0, gh):
#print(glasses[i, j]) #RGBA
if glasses2[i, j][3] != 0: # alpha 0
roi_color[ey + i, ex + j] = glasses2[i, j]
nose = nose_cascade.detectMultiScale(roi_gray, scaleFactor=1.5, minNeighbors=5)
for (nx, ny, nw, nh) in nose:
#cv2.rectangle(roi_color, (nx, ny), (nx + nw, ny + nh), (255, 0, 0), 3)
roi_nose = roi_gray[ny: ny + nh, nx: nx + nw]
mustache2 = image_resize(mustache.copy(), width=nw)
mw, mh, mc = mustache2.shape
for i in range(0, mw):
for j in range(0, mh):
#print(glasses[i, j]) #RGBA
if mustache2[i, j][3] != 0: # alpha 0
roi_color[ny + int(nh/2.0) + i, nx + j] = mustache2[i, j]
# Display the resulting frame
frame = cv2.cvtColor(frame, cv2.COLOR_BGRA2BGR)
out.write(frame)
cv2.imshow('frame',frame)
if cv2.waitKey(20) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
out.release()
cv2.destroyAllWindows()