首页 > 后端开发 > C++ > 如何在 C# 中将图像转换为 16 位灰度?

如何在 C# 中将图像转换为 16 位灰度?

DDD
发布: 2025-01-17 12:47:11
原创
556 人浏览过

How to Convert an Image to 16-bit Grayscale in C#?

C# 中将图像转换为 16 位灰度

将图像转换为每像素 16 位的灰度与简单地将各个 R、G 和 B 分量设置为亮度值不同。以下是您在 C# 中实现此目标的方法:

<code class="language-csharp">Bitmap grayScaleBP = new System.Drawing.Bitmap(2, 2, System.Drawing.Imaging.PixelFormat.Format16bppGrayScale);</code>
登录后复制

转换为灰度

要将现有图像转换为灰度:

<code class="language-csharp">Bitmap c = new Bitmap("fromFile");
Bitmap d;
for (int x = 0; x < ...</code>
登录后复制

(此处省略部分代码,因为原文代码不完整且有错误)

更快的选项

为了更快地进行灰度转换,您可以使用 ColorMatrix:

<code class="language-csharp">public static Bitmap MakeGrayscale3(Bitmap original)
{
    // 创建新的灰度图像
    Bitmap newBitmap = new Bitmap(original.Width, original.Height);

    // 从新图像获取图形上下文
    using (Graphics g = Graphics.FromImage(newBitmap))
    {
        // 定义灰度颜色矩阵
        ColorMatrix colorMatrix = new ColorMatrix(
            new float[][]
            {
                new float[] {.3f, .3f, .3f, 0, 0},
                new float[] {.59f, .59f, .59f, 0, 0},
                new float[] {.11f, .11f, .11f, 0, 0},
                new float[] {0, 0, 0, 1, 0},
                new float[] {0, 0, 0, 0, 1}
            });

        // 使用灰度颜色矩阵将原始图像绘制到新图像上
        using (ImageAttributes attributes = new ImageAttributes())
        {
            attributes.SetColorMatrix(colorMatrix);
            g.DrawImage(original, new Rectangle(0, 0, original.Width, original.Height),
                        0, 0, original.Width, original.Height, GraphicsUnit.Pixel, attributes);
        }
    }

    return newBitmap;
}</code>
登录后复制

以上是如何在 C# 中将图像转换为 16 位灰度?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板