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
92 static void rotatingCalipers( const Point2f* points, int n, int mode, float* out )
322 out[0] = px;
323 out[1] = py;
325 out[2] = A1 * buf[2];
326 out[3] = B1 * buf[2];
328 out[4] = A2 * buf[4];
329 out[5] = B2 * buf[4];
334 out[0] = max_dist;
346 Point2f out[3];
363 rotatingCalipers( hpoints, n, CALIPERS_MINAREARECT, (float*)out );
364 box.center.x = out[0].x + (out[1].x + out[2].x)*0.5f;
365 box.center.y = out[0].y + (out[1].y + out[2].y)*0.5f;
366 box.size.width = (float)std::sqrt((double)out[1].x*out[1].x + (double)out[1].y*out[1].y);
367 box.size.height = (float)std::sqrt((double)out[2].x*out[2].x + (double)out[2].y*out[2].y);
368 box.angle = (float)atan2( (double)out[1].y, (double)out[1].x );