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

template<class DstArrayT, class SrcArrayT>
void Impala::Core::Array::Harris ( DstArrayT *&  dst,
SrcArrayT *  Lx,
SrcArrayT *  Ly,
Real64  sigmaA,
Real64  k,
bool  useRecGauss = false 
) [inline]

Definition at line 63 of file Harris.h.

References Harris(), and Mul().

00065 {
00066     DstArrayT* Lx2 = 0;
00067     Mul(Lx2, Lx, Lx);
00068     DstArrayT* Ly2 = 0;
00069     Mul(Ly2, Ly, Ly);
00070     DstArrayT* LxLy = 0;
00071     Mul(LxLy, Lx, Ly);
00072     Harris(dst, Lx2, Ly2, LxLy, sigmaA, k, useRecGauss);
00073 
00074     delete Lx2;
00075     delete Ly2;
00076     delete LxLy;
00077 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:56:44 2010 for ImpalaSrc by  doxygen 1.5.1