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

void Impala::Application::IDo::CheckSimilarities ( CString  feature  )  [inline]

Definition at line 2013 of file mainIDo.cpp.

References CheckCall(), Impala::FileNameBase(), ILOG_ERROR, ILOG_INFO, mConcepts, mFrames, mImageSet, mModel, and mQuidFile.

Referenced by CheckClassifyPreAllSift(), CheckClassifyPreBoth2SiftP112213(), CheckClassifyPreSurfP112213(), CheckClassifyPreWG(), and HandleCmd().

02014     {
02015         if (mModel.empty())
02016         {
02017             ILOG_ERROR("CheckSimilarities: need model");
02018             return;
02019         }
02020         ILOG_INFO("Checking similarities " << mModel << " " << feature);
02021         String args;
02022         if (mImageSet)
02023             args = "true dummy ";
02024         else if (mFrames)
02025             args = "false Frames ";
02026         else
02027             args = "true Keyframes ";
02028         args += mConcepts + " " + mModel + " ";
02029         if (! mQuidFile.empty())
02030             args += FileNameBase(mQuidFile) + "-";
02031         args += feature;
02032         if (mImageSet || mFrames)
02033             args += " ALL";
02034         else
02035             args += " .";
02036         CheckCall("diffsimilaritytableset", args);
02037     }

Here is the call graph for this function:


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