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

template<class DstArrayT, class SrcArrayT>
void Impala::Core::Array::GaussDerivative ( DstArrayT *&  dst,
SrcArrayT *  src,
double  sigma,
int  orderDerivx,
int  orderDerivy,
double  truncation 
) [inline]

Definition at line 22 of file GaussDerivative.h.

References GaussDerivative().

Referenced by Impala::Core::Array::Octaves::BuildOctave(), Harris(), InvCompDer(), and Laplacian().

00024 {
00025 #ifdef CUDA
00026     if(Link::Cuda::CudaUsed())
00027     {
00028         bool result = Link::Cuda::GaussDerivative(dst, src, sigma, orderDerivx,
00029                                                   orderDerivy, truncation);
00030         if(result) return;   // success?
00031     }
00032 #endif
00033 
00034     GaussDerivative(dst, src, sigma, sigma, orderDerivx, orderDerivy,
00035                     truncation);
00036 }

Here is the call graph for this function:


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