Home | History | Annotate | Download | only in src

Lines Matching refs:cvRound

93     eps = cvRound( criteria.epsilon * criteria.epsilon );
108 dx = cvRound( moments.m10 * inv_m00 - windowIn.width*0.5 );
109 dy = cvRound( moments.m01 * inv_m00 - windowIn.height*0.5 );
225 xc = cvRound( m10 * inv_m00 + windowIn.x );
226 yc = cvRound( m01 * inv_m00 + windowIn.y );
260 int _xc = cvRound( xc );
261 int _yc = cvRound( yc );
263 t0 = cvRound( fabs( length * cs ));
264 t1 = cvRound( fabs( width * sn ));
269 t0 = cvRound( fabs( length * sn ));
270 t1 = cvRound( fabs( width * cs ));