How to train soft cascade opencv_trainsoftcascade.exe
can anyone tel how to train and generate xml using soft cascade
can anyone tel how to train and generate xml using soft cascade
The softcascade is part of the master branch, which isn't complete, stable, documented and such. Basically you are on your own on stuff that is on the master branch. However, you can look at the master docs and look at the softcascade training.
However, there is the well documented cascade classifier training, which is the current stable version of a cascade classification using boost. If this is what you need, please look at:
I want to implement soft cascade based on "Lubomir Bourdev and Jonathan Brandt. Robust Object Detection Via Soft Cascade. IEEE CVPR, 2005" using opencv. I want to train it using my set of own features rather than using haar or lbp. I downloaded the master branch files of opencv which have softcascade and i used cmake to generate binaries. i see binaries such as opencv_perf_softcascade.exe, opencv_test_softcascade.exe & opencv_trainsoftcascade.exe.
Now i need to train and generate the xml. plz let me know is the training procedure for cascade and soft cascade is same or different. if different then a tutorial would be much helpful.
This is exactly what I want to point out to you, there is no tutorial on the softcascade training as far as I know. However, looking behind the idea of having a single stage but many weak classifiers, I think you can reach the same result using the cascade classification, just adapting the correct parameters. So something is making me think that the basics will indeed be the same.
Using your own features will require you to dig in the code and make sure that you add an interface for pushing own features.
I am guessing that the actual training can be done by using the traincascade algorithm and tweaking the parameters like number of stages = 1 and then a giant number for the number of weak classifiers for that single stage. However, to know the value, this is trial and error. I think thats what changed with the softcascade approach.
Asked: 2013-08-13 03:09:39 -0600
Seen: 1,430 times
Last updated: Aug 13 '13
Soft Cascade - sorting detection results
Fish detection. Is haartraining a good approach ?
Performance evaluation for detection
Human detector using HAAR cascades has too many false positives it is confident about
Error in parameter of traincascade?
Mergevec.cpp : Error (compilation)
Improve Object Detection Quality
Is HaarDetectObjects rotation invariant ?
Are they any lbpcascade other then lbpcascade_frontalface.xml any where?