简体   繁体   中英

How can I draw a circle with antialiasing and gaussian line intensity using EmguCV (OpenCV)?

I need to draw the most perfect circle possible. EmguCV seems to lack an anti-aliasing option.

I'm trying to use SmoothGaussian, but the circle still does not look good/smooth enough.

Also, the circle line intensity should have Gaussian shape (ie: brighter in the center).

How can I achieve that?

Here is what I'm doing now:

using (Image<Gray, Byte> img = new Image<Gray, byte>(800, 800, new Gray(0)))
{
    PointF center = new PointF(img.Width / 2, img.Height / 2);
    //Center line
    float r = 200.0f;
    CircleF circle = new CircleF(center, r);
    img.Draw(circle, new Gray(255), 1);
    img._SmoothGaussian(7, 7, 3, 3);
}

If you use Brg, Brga or Gray color you can use that hack:

using(var graph = Graphics.FromImage(image.Bitmap))
{
    graph.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
    graph.DrawEllipse(new Pen(color.BackColor), x, y, d`i`ameter, diameter);
}

` Edit: You can also use cvInvoke

var center = new Point(x, y);
var color = new Bgr(this.color.BackColor);

CvInvoke.cvCircle(image.Ptr, center, radius, color.MCvScalar, thickness, Emgu.CV.CvEnum.LINE_TYPE.CV_AA, 0);

`

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM