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

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

Definition at line 115 of file FrameRegionTable.h.

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

00116     {
00117         // does not read vid id, this is the file format for PhD student use,
00118         // not in a 'system'
00119         while(!is.eof())
00120         {
00121             int frame = -1;
00122             int left, top, right, bottom;
00123             is >> frame >> left >> top >> right >> bottom;
00124             if(frame != -1)
00125             FrameRegionTableBaseType::Add(0, frame, left, top, right, bottom);
00126         }
00127     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:03 2011 for ImpalaSrc by  doxygen 1.5.1