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

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

Definition at line 523 of file InterestPointFeature.h.

References mLastCodebookVectors, and mPointSelector.

Referenced by ProjectForest(), and ProjectHardMatrix().

00525     {
00526         for(int ps = 0; ps < mPointSelector.size(); ps++)
00527         {
00528             InterestPointSelector* selector = mPointSelector[ps];
00529             if(selector->Accept(x, y, imageWidth, imageHeight))
00530             {
00531                 mLastCodebookVectors[ps]->Elem(codeword) =
00532                     mLastCodebookVectors[ps]->Elem(codeword) + 1;
00533                 regionCounts[ps] = regionCounts[ps] + 1;
00534             }
00535         }
00536     }


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