Skip to content

Commit f05e748

Browse files
authored
Added Face Detection Files
1 parent 684b21c commit f05e748

File tree

3 files changed

+45559
-0
lines changed

3 files changed

+45559
-0
lines changed

Face Detection/F_D_Video_Final.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import cv2
2+
face_cascade=cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
3+
eye_cascade=cv2.CascadeClassifier('haarcascade_eye.xml')
4+
5+
cap = cv2.VideoCapture(0)
6+
while 1:
7+
ret, img = cap.read()
8+
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
9+
# Detects faces of different sizes in the input image
10+
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
11+
for (x,y,w,h) in faces:
12+
# To draw a rectangle in a face
13+
cv2.rectangle(img,(x,y),(x+w,y+h),(255,255,0),2)
14+
roi_gray = gray[y:y+h, x:x+w]
15+
roi_color = img[y:y+h, x:x+w]
16+
# Detects eyes of different sizes in the input image
17+
eyes = eye_cascade.detectMultiScale(roi_gray)
18+
#To draw a rectangle in eyes
19+
for (ex,ey,ew,eh) in eyes:
20+
cv2.rectangle(roi_color,(ex,ey),(ex+ew,ey+eh),(0,127,255),2)
21+
# Display an image in a window
22+
cv2.imshow('img',img)
23+
# Wait for Esc key to stop
24+
k = cv2.waitKey(30) & 0xff
25+
if k == 27:
26+
break
27+
28+
# Close the window
29+
cap.release()
30+
31+
# De-allocate any associated memory usage
32+
cv2.destroyAllWindows()

0 commit comments

Comments
 (0)