123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef DTBPruningINCLUDE
- #define DTBPruningINCLUDE
- #include "core/vector/VectorT.h"
- #include "core/vector/MatrixT.h"
- #include "DecisionTreeBuilder.h"
- namespace OBJREC {
- class DTBPruning : public DecisionTreeBuilder
- {
- protected:
- double minimum_entropy;
- DecisionTreeBuilder *builder;
- public:
-
-
-
-
- DTBPruning( const NICE::Config *conf, std::string section, DecisionTreeBuilder *builder );
-
-
- virtual ~DTBPruning();
-
- DecisionNode *build ( const FeaturePool & fp,
- const Examples & examples, int maxClassNo );
- };
- }
- #endif
|