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

template<class DstArrayT, class SrcArrayT, class KerArrayT, class PixOpT, class RedOpT>
void Impala::Core::Array::Pattern::FuncGenConv2dSepDispatch_H ( DstArrayT *  dst,
SrcArrayT *  src,
KerArrayT *  ker,
PixOpT &  pixOp,
RedOpT &  redOp,
int  vType 
)

Dispatch function for GenConv2dSep : horizontal direction only.

Definition at line 1031 of file FuncGenConv2dSep.h.

References ArrayCH(), FuncGenConv2dSep_Line_Xdir(), and FuncGenConv2dSep_Line_XdirInc().

Referenced by PatGenConv2dK1d(), and PatGenConv2dSep().

01033 {
01034     int height = ArrayCH(dst);
01035     for (int y=0 ; y<height ; y++)
01036     {
01037         if (vType == 1)
01038             FuncGenConv2dSep_Line_Xdir(dst, src, ker, pixOp, redOp, y,
01039                                        typename PixOpT::CallCategory());
01040         if ((vType == 0) || (vType == 2))
01041             FuncGenConv2dSep_Line_XdirInc(dst, src, ker, pixOp, redOp, y,
01042                                           typename PixOpT::CallCategory());
01043     }
01044 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:01:09 2010 for ImpalaSrc by  doxygen 1.5.1