Home | History | Annotate | Download | only in src

Lines Matching full:max_rect

49         CvRect max_rect;
52 max_rect.x = a = rect1->x;
54 if( max_rect.x > b )
55 max_rect.x = b;
57 max_rect.width = a += rect1->width;
60 if( max_rect.width < b )
61 max_rect.width = b;
62 max_rect.width -= max_rect.x;
64 max_rect.y = a = rect1->y;
66 if( max_rect.y > b )
67 max_rect.y = b;
69 max_rect.height = a += rect1->height;
72 if( max_rect.height < b )
73 max_rect.height = b;
74 max_rect.height -= max_rect.y;
75 return max_rect;