00001 #ifndef Impala_Core_Training_Load_h
00002 #define Impala_Core_Training_Load_h
00003
00004 #include "Core/Training/Svm.h"
00005
00006 namespace Impala
00007 {
00008 namespace Core
00009 {
00010 namespace Training
00011 {
00012
00013
00014
00015
00025 Classifier* LoadClassifier(CString modelFileName, Util::Database* db)
00026 {
00027 Classifier* c = new Svm();
00028 c->LoadModel(modelFileName, db);
00029 return c;
00030 }
00031
00032
00033
00034
00035
00036 }
00037 }
00038 }
00039
00040 #endif