Removed the definition of basename, which confuses an existing system one.
[folded-ctf.git] / boosted_classifier.h
1 /*
2  *  folded-ctf is an implementation of the folded hierarchy of
3  *  classifiers for object detection, developed by Francois Fleuret
4  *  and Donald Geman.
5  *
6  *  Copyright (c) 2008 Idiap Research Institute, http://www.idiap.ch/
7  *  Written by Francois Fleuret <francois.fleuret@idiap.ch>
8  *
9  *  This file is part of folded-ctf.
10  *
11  *  folded-ctf is free software: you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License version 3 as
13  *  published by the Free Software Foundation.
14  *
15  *  folded-ctf is distributed in the hope that it will be useful, but
16  *  WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  *  General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with folded-ctf.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  */
24
25 /*
26
27   This class is an implementation of the Classifier with a boosting of
28   trees. It works with samples from R^n and has no concept of the
29   pi-features.
30
31 */
32
33 #ifndef BOOSTED_CLASSIFIER_H
34 #define BOOSTED_CLASSIFIER_H
35
36 #include "classifier.h"
37 #include "sample_set.h"
38 #include "decision_tree.h"
39 #include "loss_machine.h"
40
41 class BoostedClassifier : public Classifier {
42 public:
43
44   int _nb_weak_learners;
45   DecisionTree **_weak_learners;
46
47 public:
48
49   BoostedClassifier(int nb_weak_learners);
50   BoostedClassifier();
51   virtual ~BoostedClassifier();
52
53   virtual scalar_t response(SampleSet *sample_set, int n_sample);
54   virtual void train(LossMachine *loss_machine, SampleSet *train, scalar_t *response);
55
56   virtual void tag_used_features(bool *used);
57   virtual void re_index_features(int *new_indexes);
58
59   virtual void read(istream *is);
60   virtual void write(ostream *os);
61 };
62
63 #endif