Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any free OpenCV classifier libraries? [closed]

Tags:

opencv

Been tinkering with OpenCV in python. The face detection demo is impressive.

Are there any free collection of Haar classifiers aside from the face, eyes and full body ones?

like image 942
Khorkrak Avatar asked Jun 07 '10 00:06

Khorkrak


People also ask

What is better than Haar Cascade?

An LBP cascade can be trained to perform similarly (or better) than the Haar cascade, but out of the box, the Haar cascade is about 3x slower, and depending on your data, about 1-2% better at accurately detecting the location of a face.

How do I download cascade classifier OpenCV?

you just need to go to the opencv releases site. There download the appropriate release. then open the downloaded file. In there direct as followed : sources > data > haarcascades ; In that file you should find the all default haarcascade files.

What is cv2 CascadeClassifier?

It is a machine learning based approach where a cascade function is trained from a lot of positive and negative images. It is then used to detect objects in other images.


1 Answers

Sure, there are a few common ones which show up in most people's projects, although opencv should come with these:

  1. cv haar cascades
  2. eye cascades

You can make your own cascades, but be warned, it's a pretty cumbersome process. The best tutorial I found was this one.

HTH

like image 151
George Profenza Avatar answered Dec 26 '22 05:12

George Profenza