Home
last modified time | relevance | path

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

/external/opencv/cv/src/
Dcvtemplmatch.cpp160 int yofs = k*dftsize.height; in icvCrossCorr() local
163 dst = cvGetSubRect( dft_templ, &dstub, cvRect(0,yofs,templ->cols,templ->rows)); in icvCrossCorr()
179 cvGetSubRect( dft_templ, dst, cvRect(templ->cols, yofs, in icvCrossCorr()
183 cvGetSubRect( dft_templ, dst, cvRect(0,yofs,dftsize.width,dftsize.height) ); in icvCrossCorr()
201 int i, yofs; in icvCrossCorr() local
219 yofs = i*dftsize.height; in icvCrossCorr()
255 cvRect(0,(templ_cn>1?yofs:0),dftsize.width,dftsize.height) ); in icvCrossCorr()
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; in cvResize() local
823 yofs = xofs + width; in cvResize()
876 yofs[dy].idx = sy; in cvResize()
878 yofs[dy].alpha = fy; in cvResize()
880 yofs[dy].ialpha = CV_FLT_TO_FIX(fy, ICV_WARP_SHIFT); in cvResize()
884 dst->step, dsize, cn, xmax, xofs, yofs, buf0, buf1 )); in cvResize()
/external/opencv3/modules/imgproc/src/opencl/
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/opencv3/modules/imgproc/src/
Dtemplmatch.cpp704 int yofs = k*dftsize.height; in crossCorr() local
706 Mat dst(dftTempl, Rect(0, yofs, dftsize.width, dftsize.height)); in crossCorr()
707 Mat dst1(dftTempl, Rect(0, yofs, templ.cols, templ.rows)); in crossCorr()
Dimgwarp.cpp1695 ParallelLoopBody(), src(_src), dst(_dst), xofs(_xofs), yofs(_yofs), in resizeGeneric_Invoker()
1728 int sy0 = yofs[dy], k0=ksize, k1=0, ksize2 = ksize/2; in operator ()()
1761 const int* xofs, *yofs; member in cv::resizeGeneric_Invoker
1772 const int* yofs, const void* _beta, in resizeGeneric_() argument
1787 resizeGeneric_Invoker<HResize, VResize> invoker(src, dst, xofs, yofs, (const AT*)_alpha, beta, in resizeGeneric_()
2659 const int* yofs, const void* beta,
2669 const int* yofs);
2948 int* xofs = (int*)(uchar*)_buffer, * yofs = xofs + dsize.width; in ocl_resize() local
2949 short* ialpha = (short*)(yofs + dsize.height), * ibeta = ialpha + dsize.width*2; in ocl_resize()
2976 yofs[dy] = sy; in ocl_resize()
[all …]