Count Faces With Python And Opencv
I have script in python using opencv2 to detect face. I take video in my webcam and using Haar Cascade for detect faces. I want to get out of the number of detected faces in a one
Solution 1:
Simple use of len(faces)
should return the number of faces.
Post a Comment for "Count Faces With Python And Opencv"