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中文网其他相关文章!