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

void Impala::Core::Feature::InterestPointFeature::AddToPyramids ( CodebookVectors codebookVectors,
int  codeword,
double  x,
double  y,
int  imageWidth,
int  imageHeight,
std::vector< Real64 > &  regionCounts 
) [inline, private]

Definition at line 534 of file InterestPointFeature.h.

References mPointSelector.

Referenced by ProjectForest(), and ProjectHardMatrix().

00537     {
00538         for(int ps = 0; ps < mPointSelector.size(); ps++)
00539         {
00540             InterestPointSelector* selector = mPointSelector[ps];
00541             if(selector->Accept(x, y, imageWidth, imageHeight))
00542             {
00543                 codebookVectors[ps]->Elem(codeword) =
00544                     codebookVectors[ps]->Elem(codeword) + 1;
00545                 regionCounts[ps] = regionCounts[ps] + 1;
00546             }
00547         }
00548     }


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