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

void Impala::Core::Tracking::ImagePyramid::ComputeLevels ( int  top  )  [inline]

This function actually computes the scaled down images until level top.

Definition at line 67 of file ImagePyramid.h.

References ComputeNextLevel(), Levels(), and mMaxTop.

Referenced by Impala::Core::Tracking::SearcherPyramid::Reset().

00068     {
00069         if(top > mMaxTop)
00070             top = mMaxTop;
00071         if(top == 0)
00072             top = mMaxTop;
00073         while(top>Levels())
00074             ComputeNextLevel();
00075     }

Here is the call graph for this function:


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