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

void Impala::Core::Feature::VisSem::DoSpatialPyramid ( FeatureTableSet regionSim,
int  regionFeature,
FeatureTableSet regionSimSP 
) [inline, private]

Definition at line 455 of file VisSem.h.

References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Add(), DoSpatialPyramid(), Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Get2(), Impala::Core::Feature::FeatureTableSet::GetTable(), Impala::Core::Feature::Computor::mPyramid, Impala::Core::Geometry::RectanglePyramid::NrRects(), Impala::Core::Geometry::RectanglePyramid::Rect(), and Impala::Core::Feature::FeatureTableSet::Size().

00457     {
00458         for (int r=0 ; r<mPyramid.NrRects(regionFeature) ; r++)
00459         {
00460             Geometry::Rectangle rect = mPyramid.Rect(regionFeature, r);
00461             for (int t=0 ; t<regionSim->Size() ; t++)
00462             {
00463                 VectorReal64 regionVec = regionSim->GetTable(t)->Get2(r);
00464                 VectorReal64 final = DoSpatialPyramid(rect, regionVec);
00465                 regionSimSP->GetTable(t)->Add(0, final);
00466             }
00467         }
00468     }

Here is the call graph for this function:


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