HomeSort by relevance Sort by last modified time
    Searched refs:maskstep (Results 1 - 11 of 11) sorted by null

  /external/opencv/cxcore/src/
cxmean.cpp 243 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 ) \
    [all...]
cxnorm.cpp 516 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 ) \
    [all...]
cxmeansdv.cpp 497 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 ) \
    [all...]
_cxipp.h 67 const uchar* mask, int maskstep )) \
71 const uchar* mask, int maskstep, \
151 int maskStep, CvSize size, double* mean )) \
155 int maskStep, CvSize size, double* mean )) \
159 int maskStep, CvSize size, double* mean )) \
163 int maskStep, CvSize size, double* mean ))
196 const uchar* mask, int maskStep, \
200 ( const srctype* img, int imgstep, const uchar* mask, int maskStep, \
205 const uchar* mask, int maskStep, \
210 const uchar* mask, int maskStep, \
    [all...]
cxcopy.cpp 154 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, \
    [all...]
  /external/opencv/cv/src/
cvaccum.cpp 154 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...]
_cvipp.h 120 ( 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, \
    [all...]
cvhistogram.cpp 871 icvCalcHist_8u_C1R( uchar** img, int step, uchar* mask, int maskStep,
934 mask += maskStep;
978 mask += maskStep;
1016 mask += maskStep;
1057 mask += maskStep;
1110 mask += maskStep;
1124 icvCalcHist_32f_C1R( float** img, int step, uchar* mask, int maskStep,
1411 int maskstep = 0, step = 0; local
    [all...]
  /external/opencv3/modules/core/src/opencl/
copyset.cl 115 __kernel void setMask(__global const uchar* mask, int maskstep, int maskoffset,
124 int mask_index = mad24(y0, maskstep, x + maskoffset);
132 mask_index += maskstep;
arithm.cl 434 __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 for (int y = y0, y1 = min(rows, y0 + rowsPerWI); y < y1; ++y, src1_index += srcstep1, mask_index += maskstep, dst_index += dststep)
  /external/opencv3/modules/imgproc/src/
accum.cpp 865 typedef IppStatus (CV_STDCALL * ippiAddMask)(const void * pSrc, int srcStep, const Ipp8u * pMask, int maskStep, Ipp32f * pSrcDst,
890 int srcstep = (int)src.step, dststep = (int)dst.step, maskstep = (int)mask.step; local
895 maskstep = static_cast<int>(mask.total() * mask.elemSize());
904 status = ippFuncMask(src.ptr(), srcstep, mask.ptr<Ipp8u>(), maskstep,
973 int srcstep = (int)src.step, dststep = (int)dst.step, maskstep = (int)mask.step; local
1059 int src1step = (int)src1.step, src2step = (int)src2.step, dststep = (int)dst.step, maskstep = (int)mask.step; local
1147 int srcstep = (int)src.step, dststep = (int)dst.step, maskstep = (int)mask.step; local
    [all...]

Completed in 1292 milliseconds