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

template<class SrcArrayT, class NgbT>
void Impala::Core::Array::Pattern::FuncNgbOp2d_Pix_P1Cnum ( SrcArrayT *  src,
int  x,
int  y,
NgbT &  ngb 
) [inline]

Pix : phase 1, cnum.

Definition at line 53 of file FuncNgbOp2d.h.

References ArrayCPB(), and PtrRead().

Referenced by FuncNgbOp2d_Row().

00054 {
00055     typedef typename SrcArrayT::StorType SrcStorT;
00056     typedef typename SrcArrayT::ArithType SrcArithT;
00057     typedef typename NgbT::CnumType CnumType;
00058 
00059     for (CnumType cnum = ngb.Begin() ; cnum != ngb.End() ; cnum.Inc())
00060     {
00061         SrcStorT* nPtr = ArrayCPB(src, x + cnum.X(), y + cnum.Y());
00062         ngb.NextEl(cnum.X(), cnum.Y(), PtrRead(nPtr, SrcArithT()));
00063     }
00064 }

Here is the call graph for this function:


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