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

int Impala::Core::Geometry::RectanglePyramid::NrRects ( int  level  )  const [inline]

Definition at line 98 of file RectanglePyramid.h.

References mRectSet, and NrRectsPerDim().

Referenced by Impala::Core::Feature::VisSem::ComputeFeaturesPixelSet(), Impala::Core::Feature::VisSem::ComputeRegionFeatures(), Impala::Core::Feature::VisSem::DoCodebook(), Impala::Core::Feature::VisSem::DoSpatialPyramid(), Impala::Core::Feature::VisSem::DoUNC(), Impala::Core::Feature::Computor::GetRegionFeatureSetSize(), Impala::Core::Test::TestWeibull::Run(), and Impala::Core::VideoSet::ShotSegmenter::UpdateHistograms().

00099     {
00100         if (mRectSet[level].size() != 0) // known image size, so exact number
00101             return mRectSet[level].size();
00102         int r = NrRectsPerDim(level);
00103         return (r+(r-1))*(r+(r-1)); // unknown image size, but should be this
00104     }

Here is the call graph for this function:


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