Home | History | Annotate | Download | only in include

Lines Matching defs:roi

136             !image->roi ? cvSize(image->width,image->height) :
137 cvSize(image->roi->width, image->roi->height);
140 CvRect roi() const
143 !image->roi ? cvRect(0,0,image->width,image->height) :
144 cvRect(image->roi->xOffset,image->roi->yOffset,
145 image->roi->width,image->roi->height);
148 int coi() const { return !image || !image->roi ? 0 : image->roi->coi; }
150 void set_roi(CvRect roi) { cvSetImageROI(image,roi); }
166 1 : image->roi ?
167 y<image->roi->height : y<image->height);
170 !image->roi ?
172 (uchar*)(image->imageData + (y+image->roi->yOffset)*image->widthStep +
173 image->roi->xOffset*((image->depth & 255)>>3)*image->nChannels);
180 1 : image->roi ?
181 y<image->roi->height : y<image->height);
184 !image->roi ?
186 (const uchar*)(image->imageData + (y+image->roi->yOffset)*image->widthStep +
187 image->roi->xOffset*((image->depth & 255)>>3)*image->nChannels);