Searched refs:yofs (Results 1 - 5 of 5) sorted by relevance

/external/opencv3/modules/imgproc/src/opencl/
H A Dresize.cl142 __global const int * xofs = (__global const int *)(buffer), * yofs = xofs + dst_cols;
143 __global const short * ialpha = (__global const short *)(yofs + dst_rows);
147 int sx0 = xofs[dx], sy0 = clamp(yofs[dy], 0, src_rows - 1),
148 sy1 = clamp(yofs[dy] + 1, 0, src_rows - 1);
/external/opencv/cv/src/
H A Dcvtemplmatch.cpp160 int yofs = k*dftsize.height; local
163 dst = cvGetSubRect( dft_templ, &dstub, cvRect(0,yofs,templ->cols,templ->rows));
179 cvGetSubRect( dft_templ, dst, cvRect(templ->cols, yofs,
183 cvGetSubRect( dft_templ, dst, cvRect(0,yofs,dftsize.width,dftsize.height) );
201 int i, yofs; local
219 yofs = i*dftsize.height;
255 cvRect(0,(templ_cn>1?yofs:0),dftsize.width,dftsize.height) );
H A Dcvimgwarp.cpp212 const CvResizeAlpha* yofs, \
225 worktype fy = yofs[dy].alpha_field, *swap_t; \
226 int sy0 = yofs[dy].idx, sy1 = sy0 + (fy > 0 && sy0 < ssize.height-1); \
584 const CvResizeAlpha* yofs, float* buf0, float* buf1 );
808 CvResizeAlpha *xofs, *yofs; local
823 yofs = xofs + width;
876 yofs[dy].idx = sy;
878 yofs[dy].alpha = fy;
880 yofs[dy].ialpha = CV_FLT_TO_FIX(fy, ICV_WARP_SHIFT);
884 dst->step, dsize, cn, xmax, xofs, yofs, buf
[all...]
/external/opencv3/modules/imgproc/src/
H A Dtemplmatch.cpp704 int yofs = k*dftsize.height; local
706 Mat dst(dftTempl, Rect(0, yofs, dftsize.width, dftsize.height));
707 Mat dst1(dftTempl, Rect(0, yofs, templ.cols, templ.rows));
H A Dimgwarp.cpp1695 ParallelLoopBody(), src(_src), dst(_dst), xofs(_xofs), yofs(_yofs),
1728 int sy0 = yofs[dy], k0=ksize, k1=0, ksize2 = ksize/2;
1761 const int* xofs, *yofs; member in class:cv::resizeGeneric_Invoker
1772 const int* yofs, const void* _beta,
1787 resizeGeneric_Invoker<HResize, VResize> invoker(src, dst, xofs, yofs, (const AT*)_alpha, beta,
2659 const int* yofs, const void* beta,
2669 const int* yofs);
2948 int* xofs = (int*)(uchar*)_buffer, * yofs = xofs + dsize.width;
2949 short* ialpha = (short*)(yofs + dsize.height), * ibeta = ialpha + dsize.width*2;
2976 yofs[d
1770 resizeGeneric_( const Mat& src, Mat& dst, const int* xofs, const void* _alpha, const int* yofs, const void* _beta, int xmin, int xmax, int ksize ) argument
[all...]

Completed in 166 milliseconds