Home | History | Annotate | Download | only in src

Lines Matching full:comp

62              CvTermCriteria criteria, CvConnectedComp* comp )
72 if( comp )
73 comp->rect = windowIn;
136 if( comp )
138 comp->rect = cur_rect;
139 comp->area = (float)moments.m00;
179 CvConnectedComp comp;
184 comp.rect = windowIn;
190 CV_CALL( itersUsed = cvMeanShift( mat, windowIn, criteria, &comp ));
191 windowIn = comp.rect;
267 comp.rect.width = MIN( t0, (mat->width - _xc) * 2 );
273 comp.rect.height = MIN( t0, (mat->height - _yc) * 2 );
275 comp.rect.x = MAX( 0, _xc - comp.rect.width / 2 );
276 comp.rect.y = MAX( 0, _yc - comp.rect.height / 2 );
278 comp.rect.width = MIN( mat->width - comp.rect.x, comp.rect.width );
279 comp.rect.height = MIN( mat->height - comp.rect.y, comp.rect.height );
280 comp.area = (float) m00;
286 *_comp = comp;
293 box->center = cvPoint2D32f( comp.rect.x + comp.rect.width*0.5f,
294 comp.rect.y + comp.rect.height*0.5f);