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

void Impala::Core::Tracking::ImagePyramid::ComputeNextLevel (  )  [inline, private]

Definition at line 101 of file ImagePyramid.h.

References Levels(), mLevels, and ScaleAndCopy().

Referenced by ComputeLevels().

00102     {
00103         int w,h;
00104         w = mLevels[Levels()-1]->CW() / 2;
00105         h = mLevels[Levels()-1]->CH() / 2;
00106         int bw,bh;
00107         bw = mLevels[Levels()-1]->BW() / 2;
00108         bh = mLevels[Levels()-1]->BH() / 2;
00109         mLevels.push_back(new Array::Array2dVec3Real64(w,h,bw,bh));
00110         ScaleAndCopy(Levels()-2);
00111     }

Here is the call graph for this function:


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