Definition at line 2457 of file mainIDo.cpp. References Impala::MakeString(), mFrames, mImageSet, mNoImArchive, mQuidFile, mRkf, and mTaskNrFrames. Referenced by ClassifyCombineExec(), ClassifyExec(), ClusterSiftExec(), FeatureExec(), FeatureIndexExec(), FeatureIndexSiftExec(), and FeatureSiftExec(). 02458 { 02459 if (mImageSet) 02460 { 02461 if (mNoImArchive) 02462 return ""; 02463 return "--imSplitArchive"; 02464 } 02465 if (! mQuidFile.empty()) 02466 return "--quidWalk " + mQuidFile; 02467 if (mRkf) 02468 return "--keyframes --rkfMask --keyframeSrc"; 02469 if (mTaskNrFrames > 0) 02470 { 02471 return "--partialWalk --numberFrames " + MakeString(mTaskNrFrames) 02472 + " --segmentation"; 02473 } 02474 if (mFrames) 02475 return ""; 02476 return "--keyframes --keyframeSrc"; 02477 }
Here is the call graph for this function: ![]()
|