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

int Impala::Core::Feature::FeatureTableResult::GetTableSize (  )  [inline]

Definition at line 52 of file FeatureTableResult.h.

References mTables, and Size().

Referenced by Impala::Core::ImageSet::InterestPointProc::HandleDoneDir(), and Impala::Core::VideoSet::InterestPointProc::HandleDoneFile().

00053     {
00054         int size = -1;
00055         for (int i=0 ; i<Size() ; i++)
00056         {
00057             if(!mTables[i]) return -1;
00058             if (size == -1)
00059                 size = mTables[i]->Size();
00060             else if (size != mTables[i]->Size())
00061                 return -1;
00062         }
00063         return size;
00064     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:10 2011 for ImpalaSrc by  doxygen 1.5.1