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

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

Definition at line 957 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().

00958     {
00959         PointDescriptorTable* output = new PointDescriptorTable();
00960         int w = input->CW();
00961         int h = input->CH();
00962         output->SetEmpty();
00963         output->Reserve(w * h * mDenseSamplingScales.size(), false);
00964         for(int y = 0; y < h; y += 1)
00965         {
00966             for(int x = 0; x < w; x++)
00967             {
00968                 for(int q = 0; q < mDenseSamplingScales.size(); q++)
00969                 {
00970                     output->Add(x, y, mDenseSamplingScales[q], 0, 0);
00971                 }
00972             }
00973         }
00974         ILOG_INFO("Points detected: " << output->Size());
00975         return output;
00976     }

Here is the call graph for this function:


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