• Home
  • Raw
  • Download

Lines Matching refs:src_size

89                CvSize src_size, CvSize win_size,  in icvAdjustRect()  argument
107 if( ip.x + win_size.width < src_size.width ) in icvAdjustRect()
111 rect.width = src_size.width - ip.x - 1; in icvAdjustRect()
128 if( ip.y + win_size.height < src_size.height ) in icvAdjustRect()
132 rect.height = src_size.height - ip.y - 1; in icvAdjustRect()
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, in icvGetRectSubPix_8u32f_C1R() argument
423 if( 0 <= ip.x && ip.x + win_size.width < src_size.width && in icvGetRectSubPix_8u32f_C1R()
424 0 <= ip.y && ip.y + win_size.height < src_size.height ) in icvGetRectSubPix_8u32f_C1R()
452 sizeof(*src), src_size, win_size,ip, &r); in icvGetRectSubPix_8u32f_C1R()
531 CvSize src_size, void* dst,
546 CvSize src_size, dst_size; in cvGetRectSubPix() local
568 src_size = cvGetMatSize( src ); in cvGetRectSubPix()
573 if( dst_size.width > src_size.width || dst_size.height > src_size.height ) in cvGetRectSubPix()
591 IPPI_CALL( func( src->data.ptr, src_step, src_size, in cvGetRectSubPix()
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; in cvGetQuadrangleSubPix() local
842 src_size = cvGetMatSize( src ); in cvGetQuadrangleSubPix()
887 IPPI_CALL( func( src->data.ptr, src->step, src_size, in cvGetQuadrangleSubPix()