Ask Your Question

czhenry's profile - activity

2018-09-26 17:55:22 -0600 received badge  Notable Question (source)
2017-10-26 04:02:34 -0600 received badge  Popular Question (source)
2015-06-25 16:53:33 -0600 received badge  Enthusiast
2015-06-18 12:14:42 -0600 asked a question Number of stages or maxFalseAlarmRate?

Hi all,

I'm working on training a set of classifiers with opencv_traincascade to recognize a few handwritten characters.

I started out working with some typical defaults that I've found online: minHitRate 0.99 maxFalseAlarmRate 0.5 numStages 20

I observed that the stages take progressively longer to train--so I wanted to ask: Is it better to cut the maxFalseAlarm rate and run fewer stages? In what situations is it better or worse?

My next run will be relaxing these parameters to see how quickly the classifier can train (and if the performance is acceptable) with: minHitRate 0.97 maxFalseAlarmRate 0.2 numStages 5

I'm going to do what I can to get a quick set of classifiers trained that's good enough for testing, and then see about training a new set with higher accuracy over a longer period of time.