Lines Matching defs:rect
134 CvRect rect; /* bounding rectangle */
249 scanner->frame_info.rect = cvRect( 0, 0, size.width, size.height );
712 CvRect rect;
729 rect.x = rect.width = pt.x;
730 rect.y = rect.height = pt.y;
793 if( pt.x < rect.x )
794 rect.x = pt.x;
795 else if( pt.x > rect.width )
796 rect.width = pt.x;
798 if( pt.y < rect.y )
799 rect.y = pt.y;
800 else if( pt.y > rect.height )
801 rect.height = pt.y;
815 rect.width -= rect.x - 1;
816 rect.height -= rect.y - 1;
821 ((CvContour*)contour)->rect = rect;
828 if( _rect ) *_rect = rect;
919 if( (unsigned) (lnbd.x - cur->rect.x) < (unsigned) cur->rect.width &&
920 (unsigned) (lnbd.y - cur->rect.y) < (unsigned) cur->rect.height )
991 nbd, &(l_cinfo->rect) );
994 l_cinfo->rect.x -= scanner->offset.x;
995 l_cinfo->rect.y -= scanner->offset.y;