createFeatures.h 430 B

123456789101112131415161718
  1. #ifndef CREATEFEATURESINCLUDE
  2. #define CREATEFEATURESINCLUDE
  3. #include "core/basics/Config.h"
  4. #include "vislearning/cbaselib/Feature.h"
  5. #include "vislearning/cbaselib/FeaturePool.h"
  6. #include <string>
  7. namespace OBJREC {
  8. Feature *createFeatureFromTag ( const NICE::Config *conf, const std::string & tag );
  9. void restoreFeaturePool ( FeaturePool & pool, const NICE::Config *conf, std::istream & is, int format);
  10. }
  11. #endif