C#影像灰階轉換詳解
將影像轉換為灰階格式是常見的影像處理任務。本文將探討如何使用System.Drawing.Imaging.PixelFormat
枚舉在C#中實現灰階轉換。
16位元像素灰階格式
如果需要16位元像素的灰階影像,可以使用下列建構子:
<code class="language-csharp">Bitmap grayScaleBP = new System.Drawing.Bitmap(2, 2, System.Drawing.Imaging.PixelFormat.Format16bppGrayScale);</code>
影像灰階轉換
要將現有影像(c)轉換為灰階影像(d),可以使用下列程式碼:
<code class="language-csharp">Bitmap d; int x, y; // 循环遍历图像像素并将其颜色重置为灰度 for (x = 0; x < ...; x++) { for (y = 0; y < ...; y++) { // 灰度转换逻辑... } }</code>
(此處省略循環體中的具體灰階轉換程式碼,因為原文未提供完整的循環體內容)
更快的灰階轉換方法
以下是一種更有效率的影像灰階轉換方法:
<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 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} }); // 使用灰度ColorMatrix绘制原始图像 g.DrawImage(original, new Rectangle(0, 0, original.Width, original.Height), 0, 0, original.Width, original.Height, GraphicsUnit.Pixel, new ImageAttributes { ColorMatrix = colorMatrix }); } return newBitmap; }</code>
此方法使用ColorMatrix
執行灰階轉換,從而提高效能。
以上是如何在 C# 中將影像轉換為灰階?的詳細內容。更多資訊請關注PHP中文網其他相關文章!