/** * @file NoveltyDetector.cpp * @brief abstract interface for novelty detection algorithms * @author Alexander Freytag * @date 16-04-2013 (dd-mm-yyyy) */ #include #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() { }