Home | History | Annotate | Download | only in src

Lines Matching defs:src_step

88 icvAdjustRect( const void* srcptr, int src_step, int pix_size,
122 src += ip.y * src_step;
135 src += rect.height*src_step;
148 ( const srctype* src, int src_step, CvSize src_size, \
171 src_step /= sizeof(src[0]); \
178 src += ip.y * src_step + ip.x; \
181 icvCopySubpix_##flavor##_C1R_p( src, src_step*sizeof(src[0]), \
186 for( i = 0; i < win_size.height; i++, src += src_step, \
193 cast_macro(src[j+src_step])*a21 + \
194 cast_macro(src[j+src_step+1])*a22; \
197 cast_macro(src[j+src_step+1])*a21 + \
198 cast_macro(src[j+src_step+2])*a22; \
208 cast_macro(src[j+src_step])*a21 + \
209 cast_macro(src[j+src_step+1])*a22; \
219 src = (const srctype*)icvAdjustRect( src, src_step*sizeof(*src), \
224 const srctype *src2 = src + src_step; \
227 src2 -= src_step; \
267 ( const srctype* src, int src_step, CvSize src_size, \
283 src_step /= sizeof( src[0] ); \
290 src += ip.y * src_step + ip.x*3; \
292 for( i = 0; i < win_size.height; i++, src += src_step, \
298 worktype s1 = cast_macro(src[j*3 + src_step]); \
300 s1 += mul_macro( a, (cast_macro(src[j*3+3+src_step]) - s1));\
304 s1 = cast_macro(src[j*3+1 + src_step]); \
306 s1 += mul_macro( a, (cast_macro(src[j*3+4+src_step]) - s1));\
310 s1 = cast_macro(src[j*3+2 + src_step]); \
312 s1 += mul_macro( a, (cast_macro(src[j*3+5+src_step]) - s1));\
321 src = (const srctype*)icvAdjustRect( src, src_step*sizeof(*src), \
326 const srctype *src2 = src + src_step; \
329 src2 -= src_step; \
393 ( const uchar* src, int src_step, CvSize src_size,
420 src_step /= sizeof(src[0]);
427 src += ip.y * src_step + ip.x;
431 icvCopySubpix_8u32f_C1R_p( src, src_step, dst,
436 for( ; win_size.height--; src += src_step, dst += dst_step )
438 float prev = (1 - a)*(b1*CV_8TO32F(src[0]) + b2*CV_8TO32F(src[src_step]));
441 float t = a12*CV_8TO32F(src[j+1]) + a22*CV_8TO32F(src[j+1+src_step]);
451 src = (const uchar*)icvAdjustRect( src, src_step*sizeof(*src),
456 const uchar *src2 = src + src_step;
459 src2 -= src_step;
530 typedef CvStatus (CV_STDCALL *CvGetRectSubPixFunc)( const void* src, int src_step,
548 int cn, src_step, dst_step;
570 src_step = src->step ? src->step : CV_STUB_STEP;
591 IPPI_CALL( func( src->data.ptr, src_step, src_size,
604 ( const srctype * src, int src_step, CvSize src_size, \
613 src_step /= sizeof(srctype); \
632 const srctype *ptr = src + src_step*iys + ixs; \
635 worktype p1 = cvt(ptr[src_step])*a1 + cvt(ptr[src_step+1])*a;\
653 ptr0 = src + src_step*iys, ptr1 = ptr0 + src_step; \
655 ptr0 = ptr1 = src + (iys < 0 ? 0 : src_size.height-1)*src_step; \
680 ( const srctype * src, int src_step, CvSize src_size, \
689 src_step /= sizeof(srctype); \
708 const srctype *ptr = src + src_step*iys + ixs*3; \
715 p1 = cvt(ptr[src_step])*a1 + cvt(ptr[src_step+3])*a; \
719 p1 = cvt(ptr[src_step+1])*a1 + cvt(ptr[src_step+4])*a; \
723 p1 = cvt(ptr[src_step+2])*a1 + cvt(ptr[src_step+5])*a; \
737 ptr0 = src + src_step*iys, ptr1 = ptr0 + src_step; \
739 ptr0 = ptr1 = src + (iys < 0 ? 0 : src_size.height-1)*src_step; \
800 const void* src, int src_step,