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

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

Definition at line 24 of file CombineConcepts.h.

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

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

Here is the call graph for this function:


Generated on Fri Mar 19 11:14:07 2010 for ImpalaSrc by  doxygen 1.5.1