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

void Impala::Core::KeyPoint::DoG::CalculateDoG (  )  [inline]

Definition at line 126 of file DoG.h.

References Impala::Core::Array::Octaves::GetOctave(), ILOG_INFO, mDoG, mOctaveCnt, mOctaves, mScaleCnt, and Impala::Core::Array::Sub().

Referenced by FindKeyPoints().

00126                        {
00127         ILOG_INFO("Calculating DoG ...");
00128         for(int o=0;o<mOctaveCnt;o++){
00129             for(int l=0;l<mScaleCnt-1;l++){
00130                 Sub(mDoG[o*(mScaleCnt-1)+l],
00131                     mOctaves->GetOctave(o,l),
00132                     mOctaves->GetOctave(o,l+1));
00133             }
00134         }
00135     }

Here is the call graph for this function:


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