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

template<class SrcArrayT>
PointDescriptorTable* Impala::Core::Feature::InterestPointFeature::DenseAllDetector ( SrcArrayT *  input  )  [inline, private]

Definition at line 1250 of file InterestPointFeature.h.

References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Add(), ILOG_INFO, mDenseSamplingScales, Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Reserve(), Impala::Core::Table::Table::SetEmpty(), and Impala::Core::Table::Table::Size().

Referenced by ApplyDetector().

01251     {
01252         PointDescriptorTable* output = new PointDescriptorTable();
01253         int w = input->CW();
01254         int h = input->CH();
01255         output->SetEmpty();
01256         output->Reserve(w * h * mDenseSamplingScales.size(), false);
01257         for(int y = 0; y < h; y += 1)
01258         {
01259             for(int x = 0; x < w; x++)
01260             {
01261                 for(int q = 0; q < mDenseSamplingScales.size(); q++)
01262                 {
01263                     output->Add(x, y, mDenseSamplingScales[q], 0, 0);
01264                 }
01265             }
01266         }
01267         ILOG_INFO("Points detected: " << output->Size());
01268         return output;
01269     }

Here is the call graph for this function:


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