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

int Impala::Core::Feature::FeatureTableSet::CheckEqualSize (  )  [inline]

Definition at line 204 of file FeatureTableSet.h.

References GetTable(), Impala::Core::Table::Table::Size(), and Size().

Referenced by ConcatTables(), and ConcatTablesVissemHack().

00205     {
00206         int size = -1;
00207         for (int i=0 ; i<Size() ; i++)
00208         {
00209             FeatureTable* table = GetTable(i);
00210             if (size == -1)
00211                 size = table->Size();
00212             else if (size != table->Size())
00213                 return -1;
00214         }
00215         return size;
00216     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:09:32 2010 for ImpalaSrc by  doxygen 1.5.1