Home | History | Annotate | Download | only in src

Lines Matching defs:out

37 // or tort (including negligence or otherwise) arising in any way out of
71 // out - output info.
75 // ((CvPoint2D32f*)out)[0] - corner
76 // ((CvPoint2D32f*)out)[1] - vector1
77 // ((CvPoint2D32f*)out)[0] - corner2
93 icvRotatingCalipers( CvPoint2D32f* points, int n, int mode, float* out )
325 out[0] = px;
326 out[1] = py;
328 out[2] = A1 * buf[2];
329 out[3] = B1 * buf[2];
331 out[4] = A2 * buf[4];
332 out[5] = B2 * buf[4];
337 out[0] = max_dist;
365 CvPoint2D32f out[3];
442 icvRotatingCalipers( points, n, CV_CALIPERS_MINAREARECT, (float*)out );
443 box.center.x = out[0].x + (out[1].x + out[2].x)*0.5f;
444 box.center.y = out[0].y + (out[1].y + out[2].y)*0.5f;
445 box.size.height = (float)sqrt((double)out[1].x*out[1].x + (double)out[1].y*out[1].y);
446 box.size.width = (float)sqrt((double)out[2].x*out[2].x + (double)out[2].y*out[2].y);
447 box.angle = (float)atan2( -(double)out[1].y, (double)out[1].x );