HAAR Cascade Trainning recognizing few features [closed]
Commands used:
opencv_createsamples -info annotations.txt -bg bg.txt -num 107 -w 80 -h 45 -vec samples.vec
opencv_traincascade -data /home/USER/test/classifier -vec samples.vec -bg bg.txt -numStages 12 -minHitRate 0.999 -maxFalseAlarmRate 0.5 -numPos 107 -numNeg 292 -w 80 -h 45 -mode ALL -precalcValBufSize 1024 -precalcIdxBufSize 1024
I got this so far
And what is your question exactly?
I read somewhere that It should recognize more than 1 feature in the first epoc/stage
Well it finds 3! Get yourself a copy of OpenCV3 Blueprints. It discusses all parameters in quite the detail!
Thanks I'll give it a look