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

template<class ArrayT, class KerArrayT, class ValT, class PixOpT, class RedOpT>
void Impala::Core::Array::Pattern::FuncRecGenConv2dSep_YdirSim ( ArrayT *  a,
KerArrayT *  ker,
PixOpT &  pixOp,
RedOpT &  redOp,
ValT  bottomNorm 
)

RecGenConv2dSep : Y direction, simple.

Definition at line 295 of file FuncRecGenConv2dSep.h.

References ArrayCW(), ArrayH(), Impala::Core::Array::Element::E1Cast(), and FuncRecGenConv2dSep_Line_YdirSim().

Referenced by FuncRecGenConv2dSepDispatch_V().

00297 {
00298     typedef typename KerArrayT::ArithType KerArithT;
00299     KerArithT* ngbBuf = new KerArithT[ArrayH(a)];
00300     KerArithT bN = Element::E1Cast(bottomNorm, KerArithT());
00301 
00302     int width = ArrayCW(a);
00303     for (int x=0 ; x<width ; x++)
00304         FuncRecGenConv2dSep_Line_YdirSim(a, ker, ngbBuf, pixOp, redOp, bN, x);
00305 
00306     delete ngbBuf;
00307 }

Here is the call graph for this function:


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