Searched defs:max_rect (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cv/src/
H A Dcvgeometry.cpp49 CvRect max_rect; local
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
[all...]
H A Dcvpyrsegmentation.cpp114 static void icvMaxRoi( _CvRect16u *max_rect, _CvRect16u* cur_rect );
115 static void icvMaxRoi1( _CvRect16u *max_rect, int x, int y );
1762 icvMaxRoi( _CvRect16u * max_rect, _CvRect16u * cur_rect ) argument
1764 if( max_rect->x2 == 0 )
1765 *max_rect = *cur_rect;
1768 if( max_rect->x1 > cur_rect->x1 )
1769 max_rect->x1 = cur_rect->x1;
1770 if( max_rect->y1 > cur_rect->y1 )
1771 max_rect->y1 = cur_rect->y1;
1773 if( max_rect
1781 icvMaxRoi1( _CvRect16u * max_rect, int x, int y ) argument
[all...]

Completed in 53 milliseconds