我遇到AntiAliasing平滑模式和绘图的问题。 假设我在同一点有一个最小值和最大值的信号。 所以我想显示它以查看它“更厚”的位置。
所以我使用的方法是绘制垂直线并使用抗锯齿。 这是问题,上升的边缘似乎是抗锯齿的,但是下降不是。 如果我在第二个信号上加了一些噪音,可以观察到同样的事情。
Without noise http://kurty.uw.hu/prob1.png
With noise http://kurty.uw.hu/prob2.png
有谁可以指出我错过了什么?或者这个问题来自其他地方?
代码(从评论中移出):
Bitmap drawBitmap = new Bitmap(pictureBox1.Height, _
pictureBox1.Width, _
System.Drawing.Imaging.PixelFormat.Format32bppArgb);
Graphics drawGraph;
Point[] pts = new Point[] { new Point(0, 60), new Point(0, 59), new Point(1, 35), _
new Point(1, 47), new Point(2, 25), new Point(2, 35), _
new Point(3, 17), new Point(3, 25), new Point(4, 12), _
new Point(4, 27), new Point(5, 10), new Point(5, 22), _
new Point(6, 10), new Point(6, 11), new Point(7, 11), _
new Point(7, 16), new Point(8, 16), new Point(8, 24), _
new Point(9, 24), new Point(9, 34), new Point(10, 34), _
new Point(10, 46), new Point(11, 46), new Point(11, 59), _
new Point(12, 59), new Point(12, 72)};
using (drawGraph = Graphics.FromImage(drawBitmap)) {
drawGraph.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic;
drawGraph.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias;
for (int i = 1; i < pts.Length - 1; i += 2) {
drawGraph.DrawLine(new Pen(Color.Black, 1), pts[i], pts[i - 1]);
drawGraph.DrawLine(new Pen(Color.Black, 1), pts[i], pts[i + 1]);
}
}
pictureBox1.Image = drawBitmap;
答案 0 :(得分:0)
也应用像素偏移模式:
drawGraph.PixelOffsetMode = Drawing2D.PixelOffsetMode.HighQuality;
可以删除InterpolationMode
,因为它对行没有任何作用(仅在调整大小时使用图像)。