Home | History | Annotate | Download | only in src

Lines Matching defs:src_size

89                CvSize src_size, CvSize win_size,
107 if( ip.x + win_size.width < src_size.width )
111 rect.width = src_size.width - ip.x - 1;
128 if( ip.y + win_size.height < src_size.height )
132 rect.height = src_size.height - ip.y - 1;
148 ( const srctype* src, int src_step, CvSize src_size, \
174 if( 0 <= ip.x && ip.x + win_size.width < src_size.width && \
175 0 <= ip.y && ip.y + win_size.height < src_size.height ) \
220 sizeof(*src), src_size, win_size,ip, &r); \
267 ( const srctype* src, int src_step, CvSize src_size, \
286 if( 0 <= ip.x && ip.x + win_size.width < src_size.width && \
287 0 <= ip.y && ip.y + win_size.height < src_size.height ) \
322 sizeof(*src)*3, src_size, win_size, ip, &r ); \
393 ( const uchar* src, int src_step, CvSize src_size,
423 if( 0 <= ip.x && ip.x + win_size.width < src_size.width &&
424 0 <= ip.y && ip.y + win_size.height < src_size.height )
452 sizeof(*src), src_size, win_size,ip, &r);
531 CvSize src_size, void* dst,
546 CvSize src_size, dst_size;
568 src_size = cvGetMatSize( src );
573 if( dst_size.width > src_size.width || dst_size.height > src_size.height )
591 IPPI_CALL( func( src->data.ptr, src_step, src_size,
604 ( const srctype * src, int src_step, CvSize src_size, \
623 if( (unsigned)(cvFloor(xs)-1) < (unsigned)(src_size.width - 3) && \
624 (unsigned)(cvFloor(ys)-1) < (unsigned)(src_size.height - 3) && \
625 (unsigned)(cvFloor(xe)-1) < (unsigned)(src_size.width - 3) && \
626 (unsigned)(cvFloor(ye)-1) < (unsigned)(src_size.height - 3)) \
652 if( (unsigned)iys < (unsigned)(src_size.height-1) ) \
655 ptr0 = ptr1 = src + (iys < 0 ? 0 : src_size.height-1)*src_step; \
657 if( (unsigned)ixs < (unsigned)(src_size.width-1) ) \
664 ixs = ixs < 0 ? 0 : src_size.width - 1; \
680 ( const srctype * src, int src_step, CvSize src_size, \
699 if( (unsigned)(cvFloor(xs)-1) < (unsigned)(src_size.width - 3) && \
700 (unsigned)(cvFloor(ys)-1) < (unsigned)(src_size.height - 3) && \
701 (unsigned)(cvFloor(xe)-1) < (unsigned)(src_size.width - 3) && \
702 (unsigned)(cvFloor(ye)-1) < (unsigned)(src_size.height - 3)) \
736 if( (unsigned)iys < (unsigned)(src_size.height-1) ) \
739 ptr0 = ptr1 = src + (iys < 0 ? 0 : src_size.height-1)*src_step; \
741 if( (unsigned)ixs < (unsigned)(src_size.width - 1) ) \
761 ixs = ixs < 0 ? 0 : src_size.width - 1; \
801 CvSize src_size, void* dst,
816 CvSize src_size, dst_size;
842 src_size = cvGetMatSize( src );
845 /*if( dst_size.width > src_size.width || dst_size.height > src_size.height )
887 IPPI_CALL( func( src->data.ptr, src->step, src_size,