123456789101112131415161718192021222324 |
- /**
- * @file NoveltyDetector.cpp
- * @brief abstract interface for novelty detection algorithms
- * @author Alexander Freytag
- * @date 16-04-2013 (dd-mm-yyyy)
- */
- #include <iostream>
- #include "NoveltyDetector.h"
- using namespace OBJREC;
- using namespace std;
- using namespace NICE;
- NoveltyDetector::NoveltyDetector ( const Config *_conf, const std::string & _section )
- {
- this->section = _section;
- this->conf = _conf;
- }
- NoveltyDetector::~NoveltyDetector()
- {
- }
|