Hi everyone,
I'm trying to work with the opencv_traincascade function, I used 999 positive images and 2000 negative images, when I created the vec file it said "550 samples created" so i did my training with this code:
opencv_trainig -data train -vec vecfile.vec -bg negative.txt -numStages 32 -minHitRate 0.999 -maxFalseAlarm 0.5 -numPos 550 -numNeg 2000 -w 30 -h 32 -mode ALL -featureType LBP
But it took so long so I canceled the process and it generated 28 xml files, since stage0.xml untill stage26.xml and params.xml.
My question is: how can I use this xml files??? even if I let it finish, how can I use the cascade.xml genereted???
I've already used opencv_haartraining, and it just genereted only one xml file, and I could work fine with that, but I read the files genereted with opencv_traincascade have a different structure so I can not use them in the same way, I'll appreciate any help. Thanks