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

std::vector<int> Impala::Core::VideoSet::Mpeg7Doc::FindShots ( int  startFrame,
int  endFrame 
) const [inline]

Definition at line 240 of file Mpeg7Doc.h.

References mEndFrame, mStartFrame, and Impala::Core::Geometry::OverlapsAnywhere1d().

Referenced by Impala::Core::VideoSet::IndexAnnotation::DoShots().

00241     {
00242         std::vector<int> res;
00243         for (int i=0 ; i<mStartFrame.size() ; i++)
00244         {
00245             if (Geometry::OverlapsAnywhere1d(startFrame, endFrame,
00246                                              mStartFrame[i], mEndFrame[i]))
00247             {
00248                 res.push_back(i);
00249             }
00250         }
00251         return res;
00252     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:22:05 2011 for ImpalaSrc by  doxygen 1.5.1