-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Face recognition #37
Comments
Real Python Python Face Recognition and Face Detection Pre-requisites As mentioned in the first post, it’s quite easy to move from detecting faces in images to detecting them in video via a webcam - which is exactly what we will detail in this post. Before you ask any questions in the comments section: Do not skip over the blog post and try to run the code. You must understand what the code does not only to run it properly but to troubleshoot it as well. Free Bonus: Click here to get the Python Face Detection & OpenCV Examples Mini-Guide that shows you practical code examples of real-world Python computer vision techniques. Note: Also check out our updated tutorial on face detection using Python. Pre-requisites Remove ads import cv2 cascPath = sys.argv[1] video_capture = cv2.VideoCapture(0) while True:
When everything is done, release the capturevideo_capture.release() |
No description provided.
The text was updated successfully, but these errors were encountered: