This is an open implimentation of Cascaded Classifier using [1].
- BoostedCascade(CvStatModel classifier) Done;
- ~BoostedCascade() Done;
- void clear();
- void save( const char* filename, const char* name=0 );
- void load( const char* filename, const char* name=0 );
- void write( CvFileStorage* storage, const char* name );
- void read( CvFileStorage* storage, CvFileNode* node );
- bool train(const Mat& train_data, const Mat& responses, int tflag = CV_COL_SAMPLE, const Mat& var_idx =0, const Mat& sample_idx = 0) Done;
- float predict(const Mat& sample) const Done;
#References [1] Lienhart, Rainer, Alexander Kuranov, and Vadim Pisarevsky. "Empirical analysis of detection cascades of boosted classifiers for rapid object detection." In Pattern Recognition, pp. 297-304. Springer Berlin Heidelberg, 2003.