C# (灰度)加权平均法将图片转换为灰度图
Posted 篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# (灰度)加权平均法将图片转换为灰度图相关的知识,希望对你有一定的参考价值。 以上是关于C# (灰度)加权平均法将图片转换为灰度图的主要内容,如果未能解决你的问题,请参考以下文章 private Bitmap ToG(string file)
{
using (Bitmap o = new Bitmap(file))
{
Bitmap g = new Bitmap(o.Width, o.Height);
for (int i = 0; i < o.Width; i++)
{
for (int j = 0; j < o.Height; j++)
{
Color c = o.GetPixel(i, j);
//灰度加权平均法公式
int rgb = (int)(c.R * 0.299 + c.G * 0.587 + c.B * 0.114);
g.SetPixel(i, j, Color.FromArgb(rgb, rgb, rgb));
}
}
return g;
}
}