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

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

Definition at line 241 of file Mpeg7Doc.h.

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

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

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

Here is the call graph for this function:


Generated on Fri Mar 19 11:30:44 2010 for ImpalaSrc by  doxygen 1.5.1