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

template<class DstArrayT, class SrcArrayT>
void Impala::Core::Array::RecGabor ( DstArrayT *&  dst,
SrcArrayT *  src,
double  s,
double  omega0,
double  theta 
) [inline]

Definition at line 18 of file RecGabor.h.

References MakeGaborIIR1d(), and RecConvKernelSeparated().

Referenced by ColorGaborResponses(), Impala::Application::Im::DoRecGaborVec3UInt8(), and VisSemGabor().

00019 {
00020     Complex64 leftBorderVal, rightBorderVal;
00021     Array2dComplex64* gx = MakeGaborIIR1d(s, omega0*cos(theta),
00022                                           leftBorderVal, rightBorderVal);
00023 
00024     Complex64 topBorderVal, bottomBorderVal;
00025     Array2dComplex64* gy = MakeGaborIIR1d(s, omega0*sin(theta),
00026                                           topBorderVal, bottomBorderVal);
00027 
00028     RecConvKernelSeparated(dst, src, gx, gy, leftBorderVal, rightBorderVal,
00029                            topBorderVal, bottomBorderVal);
00030     delete gx;
00031     delete gy;
00032 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:58:29 2010 for ImpalaSrc by  doxygen 1.5.1