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

template<class ArrayT>
void Impala::Core::Array::HarrisObj ( ArrayT *&  dst,
const std::vector< ArrayT * > &  rgbList,
double  sigmaA,
double  k,
bool  useRecGauss = false 
) [inline]

Definition at line 133 of file Harris.h.

References Harris(), and Impala::Core::Array::Pattern::PatM9PixOp().

00135 {
00136     Trait::M9poHx<ArrayT, ArrayT> mpoHx;
00137     ArrayT* hx = 0;
00138     Pattern::PatM9PixOp(hx,
00139                         rgbList[0], rgbList[3], rgbList[6],
00140                         rgbList[1], rgbList[4], rgbList[7],
00141                         rgbList[2], rgbList[5], rgbList[8],
00142                         mpoHx);
00143 
00144     Trait::M9poHy<Array2dScalarReal64, Array2dScalarReal64> mpoHy;
00145     ArrayT* hy = 0;
00146     Pattern::PatM9PixOp(hy,
00147                         rgbList[0], rgbList[3], rgbList[6],
00148                         rgbList[1], rgbList[4], rgbList[7],
00149                         rgbList[2], rgbList[5], rgbList[8],
00150                         mpoHy);
00151 
00152     Harris(dst, hx, hy, sigmaA, k, useRecGauss);
00153     delete hx;
00154     delete hy;
00155 }

Here is the call graph for this function:


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