Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

load.h

Go to the documentation of this file.
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 }//namespace Core
00037 }//namespace Training
00038 }//Impala
00039 
00040 #endif

Generated on Fri Mar 19 09:31:24 2010 for ImpalaSrc by  doxygen 1.5.1