NoveltyDetector.cpp 462 B

123456789101112131415161718192021222324
  1. /**
  2. * @file NoveltyDetector.cpp
  3. * @brief abstract interface for novelty detection algorithms
  4. * @author Alexander Freytag
  5. * @date 16-04-2013 (dd-mm-yyyy)
  6. */
  7. #include <iostream>
  8. #include "NoveltyDetector.h"
  9. using namespace OBJREC;
  10. using namespace std;
  11. using namespace NICE;
  12. NoveltyDetector::NoveltyDetector ( const Config *_conf, const std::string & _section )
  13. {
  14. this->section = _section;
  15. this->conf = _conf;
  16. }
  17. NoveltyDetector::~NoveltyDetector()
  18. {
  19. }