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

void Impala::Application::IDo::IndexAnnotatedFeatureSiftExec ( CString  featureDesc,
CString  cMode 
) [inline]

Definition at line 1011 of file mainIDo.cpp.

References GetCurCmdArg(), GetCurCmdNrArgs(), GetQuidClass(), ILOG_ERROR, Impala::MakeString(), mConcepts, and RepositoryExec().

Referenced by IndexAnnotatedFeatureDense2GenericSift(), and IndexAnnotatedFeatureHarrisGenericSift().

01012     {
01013         if (mConcepts.empty())
01014         {
01015             ILOG_ERROR("IndexAnnotatedFeatureSiftExec: need concepts");
01016             return;
01017         }
01018         String args;
01019         for (int i=0 ; i<GetCurCmdNrArgs() ; i++)
01020             args += " " + GetCurCmdArg(i);
01021 
01022         String cbMode = (cMode.empty()) ? "" : "_" + cMode;
01023         String qClass = GetQuidClass();
01024         for (int i=0 ; i<8 ; i++)
01025         {
01026             String sub = (i == 0) ? "" : "_sub_" + MakeString(i);
01027             RepositoryExec("indexannotatedfeatures", qClass + " " + mConcepts +
01028                            " " + featureDesc + "_ps_pyramid-1x1-2x2-1x3" +
01029                            cbMode + sub + args);
01030         }
01031     }

Here is the call graph for this function:


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