simple program for face recognition in python using the webcam..

Published: 14 April 2022
on channel: Vertical Respect..!
200
11

Hi....
source code is given below....!

Face Detection in Python Using a Webcam......

code is referred by....


-by Shantnu Tiwari

data-science
machine-learning

https://realpython.com/face-detection...












import cv2
import sys

cascPath = sys.argv[1]
faceCascade = cv2.CascadeClassifier(cascPath)

video_capture = cv2.VideoCapture(0)

while True:
Capture frame-by-frame
ret, frame = video_capture.read()

gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

faces = faceCascade.detectMultiScale(
gray,
scaleFactor=1.1,
minNeighbors=5,
minSize=(30, 30),
flags=cv2.cv.CV_HAAR_SCALE_IMAGE
)

Draw a rectangle 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)

if cv2.waitKey(1) & 0xFF == ord('q'):
break

When everything is done, release the capture
video_capture.release()
cv2.destroyAllWindows()


Watch video simple program for face recognition in python using the webcam.. online, duration hours minute second in high quality that is uploaded to the channel Vertical Respect..! 14 April 2022. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 200 times and liked it 11 visitors.