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,
SrcArrayT *  Lxd2,
SrcArrayT *  Lyd2,
Real64  sigmaA,
Real64  k,
bool  useRecGauss = false 
) [inline]

Definition at line 82 of file Harris.h.

References Add(), Harris(), Mul(), and Norm2Sqr().

00084 {
00085     DstArrayT* Lx2 = 0;
00086     Norm2Sqr(Lx2, Lx, Lxd2);
00087     DstArrayT* Ly2 = 0;
00088     Norm2Sqr(Ly2, Ly, Lyd2);
00089     DstArrayT* LxLy = 0;
00090     Mul(LxLy, Lx, Ly);
00091     DstArrayT* tmp = 0;
00092     Mul(tmp, Lxd2, Lyd2);
00093     Add(LxLy, LxLy, tmp);
00094     Harris(dst, Lx2, Ly2, LxLy, sigmaA, k, useRecGauss);
00095 
00096     delete tmp;
00097     delete Lx2;
00098     delete Ly2;
00099     delete LxLy;
00100 }

Here is the call graph for this function:


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