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

Impala::Core::VideoSet::CombineConcepts::CombineConcepts ( Reporter reporter,
CmdOptions options 
) [inline]

Definition at line 26 of file CombineConcepts.h.

References Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetNrArg(), ILOG_ERROR, mCombi, mConceptFileName, mFeatureDefs, mModel, and mResultName.

00027     {
00028         if (options.GetNrArg() < 7)
00029         {
00030             ILOG_ERROR("Missing argument");
00031             return;
00032         }
00033         mConceptFileName = options.GetArg(2);
00034         mModel = options.GetArg(3);
00035         mResultName = options.GetArg(4);
00036         mCombi = options.GetArg(5);
00037         if ((mCombi != "mul") && (mCombi != "avg"))
00038         {
00039             ILOG_ERROR("Unknown combination method : " << mCombi);
00040             return;
00041         }
00042         for (int i=6 ; i<options.GetNrArg() ; i++)
00043             mFeatureDefs.push_back(options.GetArg(i));
00044     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:48 2011 for ImpalaSrc by  doxygen 1.5.1