Home | History | Annotate | Download | only in include

Lines Matching defs:roi

383     struct _IplROI *roi;    /* Image ROI. If NULL, the whole image is selected. */
863 IplROI roi;
864 roi.xOffset = rect.x;
865 roi.yOffset = rect.y;
866 roi.width = rect.width;
867 roi.height = rect.height;
868 roi.coi = coi;
870 return roi;
874 CV_INLINE CvRect cvROIToRect( IplROI roi )
876 return cvRect( roi.xOffset, roi.yOffset, roi.width, roi.height );