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

void Impala::Core::Tracking::FrameRegionTable::ReadFrom ( std::istream &  is  )  [inline]

Definition at line 107 of file FrameRegionTable.h.

References Impala::Core::Array::Add().

00108     {
00109         // does not read vid id, this is the file format for PhD student use, not in a 'system'
00110         while(!is.eof())
00111         {
00112             int frame = -1;
00113             int left, top, right, bottom;
00114             is >> frame >> left >> top >> right >> bottom;
00115             if(frame != -1)
00116             FrameRegionTableBaseType::Add(0, frame, left, top, right, bottom);
00117         }
00118     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:22:18 2010 for ImpalaSrc by  doxygen 1.5.1