-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacerecognition.py
More file actions
53 lines (41 loc) · 1.31 KB
/
facerecognition.py
File metadata and controls
53 lines (41 loc) · 1.31 KB
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
import cv2
import sys
# Check if the cascade file path is provided, otherwise use a default path
if len(sys.argv) > 1:
cascPath = sys.argv[1]
else:
cascPath = "haarcascade_frontalface_default.xml" # Update this path if necessary
# Load the Haar cascade
faceCascade = cv2.CascadeClassifier(cascPath)
# Check if the Haar cascade is loaded successfully
if faceCascade.empty():
print(f"Error: Could not load Haar cascade from {cascPath}")
sys.exit(1)
# Initialize the video capture
video_capture = cv2.VideoCapture(0)
while True:
# Capture frame-by-frame
ret, frame = video_capture.read()
if not ret:
print("Error: Could not read frame from the camera.")
break
# Convert the frame to grayscale
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Detect faces in the frame
faces = faceCascade.detectMultiScale(
gray,
scaleFactor=1.1,
minNeighbors=5,
minSize=(30, 30)
)
# Draw rectangles around the faces
for (x, y, w, h) in faces:
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
# Display the resulting frame
cv2.imshow('Video', frame)
# Break the loop when 'q' is pressed
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# Release resources
video_capture.release()
cv2.destroyAllWindows()