Skip to content Skip to sidebar Skip to footer

How To Correctly Use Peopledetect.py In Opencv?

I'm newbie of opencv and I have real need for detecting people/human within some images, I find python interface named peopledetect.py and I look through code just like this.. #!

Solution 1:

This code is using OpenCV's implementation of the HOG detector, see this tutorial for a good explanation of the algorithm. This classifier is trained on whole body images of people standing more or less upright, and that is what it will detect. If you want to detect people when you can see their face, but not the whole of their body, then take a look at OpenCV's face detection algorithms instead.


Post a Comment for "How To Correctly Use Peopledetect.py In Opencv?"