Home
last modified time | relevance | path

Searched refs:maskstep (Results 1 – 11 of 11) sorted by relevance

/external/opencv/cv/src/
Dcvaccum.cpp154 name,( const srctype *src, int srcstep, const uchar* mask, int maskstep,\
156 (src, srcstep, mask, maskstep, dst, dststep, size )) \
162 dst += dststep, mask += maskstep ) \
191 const uchar* mask, int maskstep, dsttype *dst, int dststep, CvSize size ),\
192 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) \
199 dst += dststep, mask += maskstep ) \
224 ( const srctype *src, int srcstep, const uchar* mask, int maskstep, \
226 (src, srcstep, mask, maskstep, dst, dststep, size, alpha )) \
233 dst += dststep, mask += maskstep ) \
258 name,( const srctype *src, int srcstep, const uchar* mask, int maskstep,\
[all …]
D_cvipp.h120 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
124 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
129 const uchar* mask, int maskstep, acctype* dst, int dststep, CvSize size )) \
132 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
137 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
141 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
146 const uchar* mask, int maskstep, acctype* dst, int dststep, CvSize size )) \
149 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
Dcvhistogram.cpp1411 int maskstep = 0, step = 0; in cvCalcArrHist() local
1467 maskstep = mat->step; in cvCalcArrHist()
1476 maskstep = step = CV_STUB_STEP; in cvCalcArrHist()
1514 IPPI_CALL( icvCalcHist_8u_C1R( ptr, step, maskptr, maskstep, size, hist )); in cvCalcArrHist()
1520 IPPI_CALL( icvCalcHist_32f_C1R( v.fl, step, maskptr, maskstep, size, hist )); in cvCalcArrHist()
/external/opencv/cxcore/src/
Dcxmean.cpp243 const uchar* mask, int maskstep, \
245 (src, step, mask, maskstep, size, mean)) \
249 for( ; size.height--; src += step, mask += maskstep ) \
274 const uchar* mask, int maskstep, \
276 (src, step, mask, maskstep, size, mean)) \
280 for( ; size.height--; src += step, mask += maskstep ) \
295 const uchar* mask, int maskstep, \
302 for( ; size.height--; src += step, mask += maskstep ) \
327 const uchar* mask, int maskstep, \
334 for( ; size.height--; src += step, mask += maskstep ) \
Dcxnorm.cpp516 const uchar* mask, int maskstep, CvSize size, double* _norm ),\
517 (src, step, mask, maskstep, size, _norm) ) \
524 for( ; size.height--; src += step, mask += maskstep ) \
552 const uchar* mask, int maskstep, CvSize size, double* _norm ),\
553 (src, step, mask, maskstep, size, _norm) ) \
558 for( ; size.height--; src += step, mask += maskstep ) \
574 const uchar* mask, int maskstep, CvSize size, \
583 for( ; size.height--; src += step, mask += maskstep ) \
612 const uchar* mask, int maskstep, CvSize size, \
619 for( ; size.height--; src += step, mask += maskstep ) \
[all …]
Dcxmeansdv.cpp497 const uchar* mask, int maskstep, \
499 (src, step, mask, maskstep, size, mean, sdv))\
505 for( ; size.height--; src += step, mask += maskstep ) \
532 const uchar* mask, int maskstep, \
534 (src, step, mask, maskstep, size, mean, sdv))\
539 for( ; size.height--; src += step, mask += maskstep ) \
556 const uchar* mask, int maskstep, \
565 for( ; size.height--; src += step, mask += maskstep ) \
592 const uchar* mask, int maskstep, \
600 for( ; size.height--; src += step, mask += maskstep ) \
D_cxipp.h67 const uchar* mask, int maskstep )) \
71 const uchar* mask, int maskstep, \
372 const uchar* mask, int maskstep, \
377 const uchar* mask, int maskstep, \
382 const uchar* mask, int maskstep, \
388 const uchar* mask, int maskstep, \
394 const uchar* mask, int maskstep, \
400 const uchar* mask, int maskstep, \
Dcxcopy.cpp154 CvSize size, const uchar* mask, int maskstep ), \
155 (src, srcstep, dst, dststep, size, mask, maskstep)) \
159 dst += dststep, mask += maskstep ) \
207 const uchar* mask, int maskstep, \
209 (dst, dststep, mask, maskstep, size, scalar))\
214 for( ; size.height--; mask += maskstep, \
/external/opencv3/modules/imgproc/src/
Daccum.cpp890 int srcstep = (int)src.step, dststep = (int)dst.step, maskstep = (int)mask.step; in accumulate() local
895 maskstep = static_cast<int>(mask.total() * mask.elemSize()); in accumulate()
904 status = ippFuncMask(src.ptr(), srcstep, mask.ptr<Ipp8u>(), maskstep, in accumulate()
973 int srcstep = (int)src.step, dststep = (int)dst.step, maskstep = (int)mask.step; in accumulateSquare() local
978 maskstep = static_cast<int>(mask.total() * mask.elemSize()); in accumulateSquare()
987 status = ippFuncMask(src.ptr(), srcstep, mask.ptr<Ipp8u>(), maskstep, in accumulateSquare()
1059 …ep = (int)src1.step, src2step = (int)src2.step, dststep = (int)dst.step, maskstep = (int)mask.step; in accumulateProduct() local
1065 maskstep = static_cast<int>(mask.total() * mask.elemSize()); in accumulateProduct()
1075 … status = ippFuncMask(src1.ptr(), src1step, src2.ptr(), src2step, mask.ptr<Ipp8u>(), maskstep, in accumulateProduct()
1147 int srcstep = (int)src.step, dststep = (int)dst.step, maskstep = (int)mask.step; in accumulateWeighted() local
[all …]
/external/opencv3/modules/core/src/opencl/
Dcopyset.cl115 __kernel void setMask(__global const uchar* mask, int maskstep, int maskoffset,
124 int mask_index = mad24(y0, maskstep, x + maskoffset);
132 mask_index += maskstep;
Darithm.cl434 __global const uchar * mask, int maskstep, int maskoffset,
443 int mask_index = mad24(y0, maskstep, x + maskoffset);
449 … mask_index += maskstep, dst_index += dststep)
481 __global const uchar * mask, int maskstep, int maskoffset,
490 int mask_index = mad24(y0, maskstep, x + maskoffset);
494 …ws, y0 + rowsPerWI); y < y1; ++y, src1_index += srcstep1, mask_index += maskstep, dst_index += dst…