可能な限り完璧な円を描く必要があります。EmguCV にはアンチエイリアス オプションがないようです。
SmoothGaussian を使用しようとしていますが、円はまだ十分に滑らかに見えません。
また、円の線の強度はガウス形状 (つまり、中心が明るい) である必要があります。
どうすればそれを達成できますか?
これが私が今していることです:
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);
}