123456789101112131415161718192021222324252627282930 |
- /**
- * @file VCLearnFromSC.cpp
- * @brief Simple classification interface for OSL
- * @author Erik Rodner
- * @date 07.09.2007
- */
- #include <iostream>
- #include <fstream>
- #include "vislearning/classifier/vclassifier/VCLearnFromSC.h"
- using namespace OBJREC;
- using namespace std;
- // refactor-nice.pl: check this substitution
- // old: using namespace ice;
- using namespace NICE;
- VCLearnFromSC::VCLearnFromSC(
- const Config *_conf )
- {
- }
- VCLearnFromSC::~VCLearnFromSC()
- {
- }
|