1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include <iostream>
- #include <vislearning/baselib/Preprocess.h>
- #include "FeatureLearningGeneric.h"
- using namespace OBJREC;
- using namespace std;
- using namespace NICE;
- FeatureLearningGeneric::FeatureLearningGeneric ( const Config *_conf )
- {
- this->conf = _conf;
- Preprocess::Init ( _conf );
- }
- FeatureLearningGeneric::~FeatureLearningGeneric()
- {
- }
- void FeatureLearningGeneric::learnNewFeatures ( const std::string & _filename )
- {
- }
|