Searched refs:srcstep (Results 1 - 25 of 25) sorted by relevance

/external/opencv/cv/src/
H A Dcvcolor.cpp93 const void* src, int srcstep, void* dst, int dststep, CvSize size );
96 const void* src, int srcstep, void* dst, int dststep,
100 const void* src, int srcstep, void* dst, int dststep,
104 const void* src, int srcstep, void* dst, int dststep,
113 icvBGRx2BGR_##flavor##_CnC3R( const arrtype* src, int srcstep, \
119 srcstep /= sizeof(src[0]); \
121 srcstep -= size.width*src_cn; \
124 for( ; size.height--; src += srcstep, dst += dststep ) \
141 icvBGR2BGRx_##flavor##_C3C4R( const arrtype* src, int srcstep, \
147 srcstep /
211 icvBGR5x52BGRx_8u_C2CnR( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int dst_cn, int blue_idx, int green_bits ) argument
249 icvBGRx2BGR5x5_8u_CnC2R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx, int green_bits ) argument
357 icvBGRx2ABC_IPP_8u_CnC3R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx, CvColorCvtFunc0 ipp_func ) argument
518 icvBGR5x52Gray_8u_C2C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int green_bits ) argument
550 icvGray2BGR5x5_8u_C1C2R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int green_bits ) argument
578 icvBGRx2Gray_8u_CnC1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
627 icvBGRx2Gray_16u_CnC1R( const ushort* src, int srcstep, ushort* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
650 icvBGRx2Gray_32f_CnC1R( const float* src, int srcstep, float* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
968 icvABC2BGRx_8u_C3CnR( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int dst_cn, int blue_idx, CvColorCvtFunc2 cvtfunc_32f, const float* pre_coeffs, int postscale ) argument
1040 icvBGRx2ABC_8u_CnC3R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx, CvColorCvtFunc2 cvtfunc_32f, int prescale, const float* post_coeffs ) argument
1152 icvBGRx2HSV_8u_CnC3R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
1254 icvBGRx2HSV_32f_CnC3R( const float* src, int srcstep, float* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
1302 icvHSV2BGRx_32f_C3CnR( const float* src, int srcstep, float* dst, int dststep, CvSize size, int dst_cn, int blue_idx ) argument
1357 icvHSV2BGRx_8u_C3CnR( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int dst_cn, int blue_idx ) argument
1420 icvBGRx2HLS_32f_CnC3R( const float* src, int srcstep, float* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
[all...]
H A Dcvutils.cpp111 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi, argument
118 if( srcstep == dststep && dst + dststep*top + left*cn == src &&
132 return ifunc( src, srcstep, srcroi, dstroi, top, left );
147 return func( src, srcstep, srcroi, dst, dststep, dstroi, top, left );
150 if( (cn | srcstep | dststep | (size_t)src | (size_t)dst) % isz == 0 )
156 srcstep /= isz;
173 isrc += srcstep;
192 src += srcstep;
201 icvCopyReflect101Border_8u( const uchar* src, int srcstep, CvSize srcroi, argument
210 if( (cn | srcstep | dstste
334 icvCopyConstBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* value ) argument
485 int srcstep, dststep; local
[all...]
H A D_cvipp.h105 ( const arrtype* src, int srcstep, acctype* dst, int dststep, CvSize size )) \
108 ( const arrtype* src, int srcstep, acctype* dst, int dststep, CvSize size )) \
115 ( const arrtype* src, int srcstep, acctype* dst, int dststep, \
120 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
124 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
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, \
149 ( const arrtype* src, int srcstep, const uchar* mask, int maskstep, \
201 (const void* src, CvSize srcsize, int srcstep, CvRec
[all...]
H A Dcvaccum.cpp46 name,( const srctype *src, int srcstep, dsttype *dst, \
47 int dststep, CvSize size ), (src, srcstep, dst, dststep, size )) \
50 srcstep /= sizeof(src[0]); \
53 for( ; size.height--; src += srcstep, dst += dststep ) \
119 ( const srctype *src, int srcstep, dsttype *dst, int dststep, \
120 CvSize size, dsttype alpha ), (src, srcstep, dst, dststep, size, alpha) )\
123 srcstep /= sizeof(src[0]); \
126 for( ; size.height--; src += srcstep, dst += dststep ) \
154 name,( const srctype *src, int srcstep, const uchar* mask, int maskstep,\
156 (src, srcstep, mas
[all...]
H A Dcvsumpixels.cpp47 icvIntegralImage_##flavor##_C1R( const arrtype* src, int srcstep,\
58 srcstep /= sizeof(src[0]); \
80 for( y = 0; y < size.height; y++, src += srcstep, \
94 for( y = 0; y < size.height; y++, src += srcstep, \
147 src += srcstep; \
210 icvIntegralImage_##flavor##_CnR( const arrtype* src, int srcstep,\
216 srcstep /= sizeof(src[0]); \
233 for( y = 0; y < size.height; y++, src += srcstep, \
248 for( y = 0; y < size.height; y++, src += srcstep, \
299 const void* src, int srcstep, voi
[all...]
H A D_cvimgproc.h56 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int aperture );
59 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi );
79 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi,
H A Dcvdistransform.cpp67 icvDistanceTransform_3x3_C1R( const uchar* src, int srcstep, int* temp, argument
76 srcstep /= sizeof(src[0]);
85 const uchar* s = src + i*srcstep;
139 icvDistanceTransform_5x5_C1R( const uchar* src, int srcstep, int* temp, argument
149 srcstep /= sizeof(src[0]);
158 const uchar* s = src + i*srcstep;
228 icvDistanceTransformEx_5x5_C1R( const uchar* src, int srcstep, int* temp, argument
240 srcstep /= sizeof(src[0]);
250 const uchar* s = src + i*srcstep;
595 typedef CvStatus (CV_STDCALL * CvIPPDistTransFunc)( const uchar* src, int srcstep,
634 int srcstep = src->step; local
[all...]
H A Dcvimgwarp.cpp124 icvResize_NN_8u_C1R( const uchar* src, int srcstep, CvSize ssize, argument
143 tsrc = src + srcstep*t;
208 icvResize_Bilinear_##flavor##_CnR( const arrtype* src, int srcstep, CvSize ssize,\
218 srcstep /= sizeof(src[0]); \
249 _src = src + sy*srcstep; \
288 icvResize_AreaFast_##flavor##_CnR( const arrtype* src, int srcstep, CvSize ssize,\
298 srcstep /= sizeof(src[0]); \
305 const arrtype* _src = src + dy*scale_y*srcstep + xofs[dx]; \
324 icvResize_Area_##flavor##_CnR( const arrtype* src, int srcstep, CvSize ssize, \
332 srcstep /
688 int srcstep = src->step ? src->step : CV_STUB_STEP; local
718 int srcstep = src->step / CV_ELEM_SIZE(depth); local
1148 int srcstep = src->step ? src->step : CV_STUB_STEP; local
1420 int srcstep = src->step ? src->step : CV_STUB_STEP; local
2060 int srcstep = src->step ? src->step : CV_STUB_STEP; local
[all...]
H A Dcvpyramids.cpp83 icvPyrDownG5x5_##flavor##_CnR( const type* src, int srcstep, type* dst, \
95 srcstep /= sizeof(src[0]); dststep /= sizeof(dst[0]); \
121 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
137 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
144 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
281 icvPyrUpG5x5_##flavor##_CnR( const type* src, int srcstep, type* dst, \
293 srcstep /= sizeof(src[0]); dststep /= sizeof(dst[0]); \
318 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
336 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
345 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
[all...]
H A Dcvstereobm.cpp116 int srcstep = src->step; local
130 vsum[x] = (ushort)(vsum[x] + sptr[srcstep*y + x]);
135 const uchar* top = sptr + srcstep*MAX(y-wsz2-1,0);
136 const uchar* bottom = sptr + srcstep*MIN(y+wsz2,size.height-1);
137 const uchar* prev = sptr + srcstep*MAX(y-1,0);
138 const uchar* curr = sptr + srcstep*y;
139 const uchar* next = sptr + srcstep*MIN(y+1,size.height-1);
H A Dcvundistort.cpp45 icvUnDistort_8u_CnR( const uchar* src, int srcstep, argument
58 srcstep /= sizeof(src[0]);
76 const uchar* ptr = src + iy*srcstep + ix*cn;
80 float t0 = CV_8TO32F(ptr[i]), t1 = CV_8TO32F(ptr[i+srcstep]);
82 t1 += _x*(CV_8TO32F(ptr[i + srcstep + cn]) - t1);
H A Dcvderiv.cpp157 ( const void* src, int srcstep, void* dst, int dststep,
161 ( const void* src, int srcstep, void* dst, int dststep,
165 ( const void* src, int srcstep, void* dst, int dststep,
170 ( const void* src, int srcstep, void* dst, int dststep,
H A Dcvmorph.cpp799 ( const void* src, int srcstep, void* dst, int dststep,
807 ( const void* src, int srcstep, void* dst, int dststep,
H A Dcvsmooth.cpp1306 ( const void* src, int srcstep, void* dst, int dststep,
H A Dcvfilter.cpp2373 ( const void* src, int srcstep, void* dst, int dststep,
2581 ( const void* src, int srcstep, void* dst, int dststep, CvSize size,
/external/opencv/cxcore/src/
H A D_cxcore.h303 CvStatus CV_STDCALL icvLUT_Transform8u_8u_C1R( const uchar* src, int srcstep, uchar* dst,
305 CvStatus CV_STDCALL icvLUT_Transform8u_16u_C1R( const uchar* src, int srcstep, ushort* dst,
307 CvStatus CV_STDCALL icvLUT_Transform8u_32s_C1R( const uchar* src, int srcstep, int* dst,
309 CvStatus CV_STDCALL icvLUT_Transform8u_64f_C1R( const uchar* src, int srcstep, double* dst,
312 CvStatus CV_STDCALL icvLUT_Transform8u_8u_C2R( const uchar* src, int srcstep, uchar* dst,
314 CvStatus CV_STDCALL icvLUT_Transform8u_8u_C3R( const uchar* src, int srcstep, uchar* dst,
316 CvStatus CV_STDCALL icvLUT_Transform8u_8u_C4R( const uchar* src, int srcstep, uchar* dst,
319 typedef CvStatus (CV_STDCALL * CvLUT_TransformFunc)( const void* src, int srcstep, void* dst,
323 icvLUT_Transform8u_8s_C1R( const uchar* src, int srcstep, schar* dst, argument
326 return icvLUT_Transform8u_8u_C1R( src, srcstep, (ucha
331 icvLUT_Transform8u_16s_C1R( const uchar* src, int srcstep, short* dst, int dststep, CvSize size, const short* lut ) argument
339 icvLUT_Transform8u_32f_C1R( const uchar* src, int srcstep, float* dst, int dststep, CvSize size, const float* lut ) argument
[all...]
H A Dcxconvert.cpp155 ( const arrtype* src, int srcstep, \
157 (src, srcstep, dst, dststep, size)) \
160 srcstep /= sizeof(src[0]); \
163 for( ; size.height--; src += srcstep ) \
175 ( const arrtype* src, int srcstep, arrtype* dst, int dststep,\
177 (src, srcstep, dst, dststep, size, cn, coi)) \
180 srcstep /= sizeof(src[0]); \
183 for( ; size.height--; src += srcstep, dst += dststep )\
230 plane0 += srcstep; \
231 plane1 += srcstep; \
951 icvCvtScaleAbsTo_8u_C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, double scale, double shift, int param ) argument
[all...]
H A Dcxlut.cpp105 const uchar* src, int srcstep, \
111 for( ; size.height--; src += srcstep, dst += dststep ) \
134 const uchar* src, int srcstep, \
147 for( ; size.height--; src+=srcstep, dst+=dststep ) \
159 for( ; size.height--; src += srcstep, dst += dststep ) \
207 const void* src, int srcstep, void* dst,
H A D_cxipp.h65 ( const arrtype* src, int srcstep, \
457 ( const arrtype* pSrc, int srcstep, arrtype* pDst, int dststep, \
461 ( const arrtype* pSrc, int srcstep, arrtype* pDst, int dststep, \
477 ( const arrtype* src, int srcstep, arrtype** dst, int dststep, CvSize size )) \
480 ( const arrtype* src, int srcstep, arrtype** dst, int dststep, CvSize size )) \
483 ( const arrtype* src, int srcstep, arrtype** dst, int dststep, CvSize size )) \
486 ( const arrtype* src, int srcstep, arrtype* dst, int dststep, \
490 ( const arrtype* src, int srcstep, arrtype* dst, int dststep, \
494 ( const arrtype** src, int srcstep, arrtype* dst, int dststep, CvSize size )) \
497 ( const arrtype** src, int srcstep, arrtyp
[all...]
H A Dcxcopy.cpp57 IPCVAPI_IMPL( CvStatus, icvCopy_8u_C1R, ( const uchar* src, int srcstep, argument
59 (src, srcstep, dst, dststep, size) )
61 for( ; size.height--; src += srcstep, dst += dststep )
153 name,( const type* src, int srcstep, type* dst, int dststep,\
155 (src, srcstep, dst, dststep, size, mask, maskstep)) \
157 srcstep /= sizeof(src[0]); dststep /= sizeof(dst[0]); \
158 for( ; size.height--; src += srcstep, \
807 icvFlipHorz_##flavor( const arrtype* src, int srcstep, \
811 srcstep /= sizeof(src[0]); dststep /= sizeof(dst[0]); \
813 for( ; size.height--; src += srcstep, ds
837 icvFlipVert_8u_C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size ) argument
[all...]
H A Dcxsumpixels.cpp685 icv##name##Rows_##flavor##_C1R( const arrtype* src, int srcstep,\
689 srcstep /= sizeof(src[0]); \
696 src += srcstep; \
726 icv##name##Cols_##flavor##_C1R( const arrtype* src, int srcstep, \
730 srcstep /= sizeof(src[0]); \
733 for( ; size.height--; src += srcstep, dst += dststep ) \
766 icv##name##Cols_##flavor##_C3R( const arrtype* src, int srcstep, \
770 srcstep /= sizeof(src[0]); \
773 for( ; size.height--; src += srcstep, dst += dststep ) \
795 icv##name##Cols_##flavor##_C4R( const arrtype* src, int srcstep, \
[all...]
H A Dcxmatmul.cpp1444 icvTransform_##flavor( const arrtype* src, int srcstep, \
1448 srcstep = srcstep/sizeof(src[0]) - size.width*cn; \
1450 for( ; size.height--; src += srcstep, dst += dststep ) \
1464 icvDiagTransform_##flavor( const arrtype* src, int srcstep, \
1468 srcstep /= sizeof(src[0]); \
1470 for( ; size.height--; src += srcstep, dst += dststep ) \
1555 const void* src, int srcstep,
1560 const void* src, int srcstep,
1565 const void* src, int srcstep,
[all...]
H A Dcxmatrix.cpp283 srcstep /= sizeof(src[0]); \
287 src += 2*srcstep, dst += 2 ) \
289 const arrtype* src1 = src + srcstep; \
340 srcstep /= sizeof(src[0]); \
343 for( ; size.height--; src+=srcstep, dst+=3 )\
366 srcstep /= sizeof(src[0]); \
369 for( ; size.height--; src+=srcstep, dst+=4 )\
406 icvTranspose_##flavor( const arrtype* src, int srcstep, \
904 #define Sf( y, x ) ((float*)(srcdata + y*srcstep))[x]
905 #define Sd( y, x ) ((double*)(srcdata + y*srcstep))[
977 int srcstep = src->step; local
1278 int srcstep = src->step; local
[all...]
H A Dcxmathfuncs.cpp1846 ( const float* src, int srcstep, CvSize size, int flags, double min_val, double max_val ),
1847 (src, srcstep, size, flags, min_val, max_val) )
1873 srcstep /= sizeof(isrc[0]);
1874 for( ; size.height--; isrc += srcstep )
1892 ( const double* src, int srcstep, CvSize size, int flags, double min_val, double max_val ),
1893 (src, srcstep, size, flags, min_val, max_val) )
1919 srcstep /= sizeof(isrc[0]);
1920 for( ; size.height--; isrc += srcstep )
H A Dcxcmp.cpp237 typedef CvStatus (CV_STDCALL * CvInRangeCFunc)( const void* src, int srcstep,

Completed in 265 milliseconds