I want to use AdaBoost to choose a good set features from a large number (~100k). AdaBoost works by iterating though the feature set and adding in features based on how well they preform. It chooses features that preform well on samples that were mis-classified by the existing feature set.
Im currently using in Open CV's CvBoost
. I got an example working, but from the documentation it is not clear how to pull out the feature indexes that It has used.
Using either CvBoost
, a 3rd party library or implementing it myself, how can pull out a set of features from a large feature set using AdaBoot?