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

void Impala::Core::Geometry::RectanglePyramid::SetImageSize ( int  imWidth,
int  imHeight 
) [inline]

Definition at line 54 of file RectanglePyramid.h.

References Impala::Core::Geometry::MakeOverlappingRects(), mBorderWidth, mImHeight, mImWidth, mNrRectsPerDim, and mRectSet.

Referenced by Impala::Core::Feature::VisSem::ComputeFeatures(), Impala::Core::Feature::VisSem::ComputeRegionFeatures(), Impala::Core::VideoSet::ShotSegmenter::HandleNewFile(), RectanglePyramid(), and Impala::Core::Test::TestWeibull::Run().

00055     {
00056         if (mBorderWidth == -1)
00057             return;
00058         if ((imWidth == mImWidth) && (imHeight == mImHeight))
00059             return;
00060         mImWidth = imWidth;
00061         mImHeight = imHeight;
00062         for (int i=0 ; i<mRectSet.size() ; i++)
00063         {
00064             mRectSet[i].clear();
00065             MakeOverlappingRects(std::back_inserter(mRectSet[i]),
00066                                  mImWidth, mImHeight, mBorderWidth,
00067                                  mNrRectsPerDim[i], mNrRectsPerDim[i], 1);
00068         }
00069     }

Here is the call graph for this function:


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