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

void Impala::Application::IDo::MapExec ( CString  feature,
bool  doParam 
) [inline]

Definition at line 1472 of file mainIDo.cpp.

References CallSystem(), Exec2(), ILOG_ERROR, mAnnotations, mConcepts, mModel, and mSetName.

Referenced by HandleCmd(), MapPreAllSift(), MapPreAllSurf(), MapPreWGclus960sp(), MapWG(), and MapWGclus960sp().

01473     {
01474         if (mConcepts.empty())
01475         {
01476             ILOG_ERROR("MapExec: need concepts");
01477             return;
01478         }
01479         if (mModel.empty())
01480         {
01481             ILOG_ERROR("MapExec: need model");
01482             return;
01483         }
01484 
01485         static bool first = true;
01486         if (first)
01487         {
01488             CallSystem("echo \"\" > map.txt");
01489             first = false;
01490         }
01491         if (doParam)
01492         {
01493             Exec2("util dumpparameter " + mSetName + " " + mConcepts + " " +
01494                   mModel + " " + feature, " >> map.txt");
01495         }
01496         Exec2("util scoreconcepts " + mSetName + " " + mConcepts + " " +
01497               mModel + " " + feature + " " + mAnnotations, " >> map.txt");
01498     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:14:24 2011 for ImpalaSrc by  doxygen 1.5.1