Searched defs:PU_FILTER (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cv/src/
H A Dcvpyramids.cpp234 #define PU_FILTER( x0, x1, x2 ) ((x1)*6 + (x0) + (x2)) macro
331 row[2 * x] = PU_FILTER( src[x - 1], src[x], src[x + 1] ); \
364 row[2 * x] = PU_FILTER( src[x - 3], src[x], src[x + 3] ); \
367 row[2 * x + 1] = PU_FILTER( src[x - 2], src[x + 1], src[x + 4]);\
370 row[2 * x + 2] = PU_FILTER( src[x - 1], src[x + 2], src[x + 5]);\
393 dst[x] = (type)_pu_scale_( PU_FILTER( row0[x], row1[x], row2[x] )); \

Completed in 94 milliseconds