如何从OpenCV的fitEllipse函数中获取椭圆系数?

Leo*_*Leo 4 opencv ellipse

我想从一张图片中提取红球,并在图片中获得检测到的椭圆矩阵.

这是我的例子: 在此输入图像描述

我对图片进行阈值处理,使用findContour()函数找到红色球的轮廓,并使用fitEllipse()来拟合椭圆.

但我想要的是得到这个椭圆的系数.因为fitEllipse()返回一个旋转矩形(RotatedRect),所以我需要重新编写这个函数.

一个椭圆可以表示为Ax ^ 2 + By ^ 2 + Cxy + Dx + Ey + F = 0; 如果F为1(构造椭圆矩阵),我想得到u =(A,B,C,D,E,F)或u =(A,B,C,D,E).

我读了fitEllipse()的源代码,共有三个SVD过程,我想我可以从那三个SVD过程的结果中得到上述系数.但我很困惑每个SVD过程的每个结果(变量cv :: Mat x)代表什么,为什么这里有三个SVD?

这是这个功能:

cv::RotatedRect cv::fitEllipse( InputArray _points )
{
   Mat points = _points.getMat();
   int i, n = points.checkVector(2);
   int depth = points.depth();
   CV_Assert( n >= 0 && (depth == CV_32F || depth == CV_32S));

   RotatedRect box;

   if( n < 5 )
        CV_Error( CV_StsBadSize, "There should be at least 5 points to fit the ellipse" );

    // New fitellipse algorithm, contributed by Dr. Daniel Weiss
    Point2f c(0,0);
    double gfp[5], rp[5], t;
    const double min_eps = 1e-8;
    bool is_float = depth == CV_32F;
    const Point* ptsi = points.ptr<Point>();
    const Point2f* ptsf = points.ptr<Point2f>();

    AutoBuffer<double> _Ad(n*5), _bd(n);
    double *Ad = _Ad, *bd = _bd;

    // first fit for parameters A - E
    Mat A( n, 5, CV_64F, Ad );
    Mat b( n, 1, CV_64F, bd );
    Mat x( 5, 1, CV_64F, gfp );

    for( i = 0; i < n; i++ )
    {
        Point2f p = is_float ? ptsf[i] : Point2f((float)ptsi[i].x, (float)ptsi[i].y);
        c += p;
    }
    c.x /= n;
    c.y /= n;

    for( i = 0; i < n; i++ )
    {
        Point2f p = is_float ? ptsf[i] : Point2f((float)ptsi[i].x, (float)ptsi[i].y);
        p -= c;

        bd[i] = 10000.0; // 1.0?
        Ad[i*5] = -(double)p.x * p.x; // A - C signs inverted as proposed by APP
        Ad[i*5 + 1] = -(double)p.y * p.y;
        Ad[i*5 + 2] = -(double)p.x * p.y;
        Ad[i*5 + 3] = p.x;
        Ad[i*5 + 4] = p.y;
    }

    solve(A, b, x, DECOMP_SVD);

    // now use general-form parameters A - E to find the ellipse center:
    // differentiate general form wrt x/y to get two equations for cx and cy
    A = Mat( 2, 2, CV_64F, Ad );
    b = Mat( 2, 1, CV_64F, bd );
    x = Mat( 2, 1, CV_64F, rp );
    Ad[0] = 2 * gfp[0];
    Ad[1] = Ad[2] = gfp[2];
    Ad[3] = 2 * gfp[1];
    bd[0] = gfp[3];
    bd[1] = gfp[4];
    solve( A, b, x, DECOMP_SVD );

    // re-fit for parameters A - C with those center coordinates
    A = Mat( n, 3, CV_64F, Ad );
    b = Mat( n, 1, CV_64F, bd );
    x = Mat( 3, 1, CV_64F, gfp );
    for( i = 0; i < n; i++ )
    {
        Point2f p = is_float ? ptsf[i] : Point2f((float)ptsi[i].x, (float)ptsi[i].y);
        p -= c;
        bd[i] = 1.0;
        Ad[i * 3] = (p.x - rp[0]) * (p.x - rp[0]);
        Ad[i * 3 + 1] = (p.y - rp[1]) * (p.y - rp[1]);
        Ad[i * 3 + 2] = (p.x - rp[0]) * (p.y - rp[1]);
    }
    solve(A, b, x, DECOMP_SVD);

    // store angle and radii
    rp[4] = -0.5 * atan2(gfp[2], gfp[1] - gfp[0]); // convert from APP angle usage
    if( fabs(gfp[2]) > min_eps )
        t = gfp[2]/sin(-2.0 * rp[4]);
    else // ellipse is rotated by an integer multiple of pi/2
        t = gfp[1] - gfp[0];
    rp[2] = fabs(gfp[0] + gfp[1] - t);
    if( rp[2] > min_eps )
        rp[2] = std::sqrt(2.0 / rp[2]);
    rp[3] = fabs(gfp[0] + gfp[1] + t);
    if( rp[3] > min_eps )
        rp[3] = std::sqrt(2.0 / rp[3]);

    box.center.x = (float)rp[0] + c.x;
    box.center.y = (float)rp[1] + c.y;
    box.size.width = (float)(rp[2]*2);
    box.size.height = (float)(rp[3]*2);
    if( box.size.width > box.size.height )
    {
        float tmp;
        CV_SWAP( box.size.width, box.size.height, tmp );
        box.angle = (float)(90 + rp[4]*180/CV_PI);
    }
    if( box.angle < -180 )
        box.angle += 360;
    if( box.angle > 360 )
        box.angle -= 360;

    return box;
}
Run Code Online (Sandbox Code Playgroud)

源代码链接:https://github.com/Itseez/opencv/blob/master/modules/imgproc/src/shapedescr.cpp

Mik*_*iki 16

该函数fitEllipse返回一个RotatedRect包含椭圆的所有参数的函数.

椭圆由5个参数定义:

  • xc :中心的x坐标
  • yc :中心的y坐标
  • a :主要的半轴
  • b :小半轴
  • theta:旋转角度

您可以获得以下参数:

RotatedRect e = fitEllipse(points);

float xc    = e.center.x;
float yc    = e.center.y;
float a     = e.size.width  / 2;    // width >= height
float b     = e.size.height / 2;
float theta = e.angle;              // in degrees
Run Code Online (Sandbox Code Playgroud)

您可以绘制一个椭圆与功能ellipse使用RotatedRect:

ellipse(image, e, Scalar(0,255,0)); 
Run Code Online (Sandbox Code Playgroud)

或者,等效地使用椭圆参数:

ellipse(res, Point(xc, yc), Size(a, b), theta, 0.0, 360.0, Scalar(0,255,0));
Run Code Online (Sandbox Code Playgroud)

如果你需要隐式方程的系数值,你可以这样做(来自维基百科):

在此输入图像描述

因此,您可以从中获取所需的参数RotatedRect,而无需更改功能fitEllipse.的解决功能用于求解线性系统或最小二乘问题.使用SVD分解方法,系统可以是过度定义的和/或矩阵src1可以是单数的.

有关该算法的更多详细信息,您可以看到Fitzgibbon提出的这种拟合椭圆方法的论文.