.NET Zone is brought to you in partnership with:

Application and Systems Developer / Architect specializing in mobility and everything related. Extensive knowledge and experience with building software for the platforms based on Windows CE since PocketPC 2002. Has been involved in the design, development, test, and deployment of various systems from small to large, commercial, industrial, and enterprise Christian is a DZone MVB and is not an employee of DZone and has posted 8 posts at DZone. You can read more from them at their website. View Full User Profile

How to Convert an Image to Gray Scale With WPF

07.01.2012
| 2937 views |
  • submit to reddit
I've been playing with the Windows Presentation Foundation today and I had a task where I needed to convert an image to gray scale to do some image analysis on it. I've done this a bunch of times before using GDI methods or by accessing the BitmapData class in .NET. For this short post I'd like to demonstrate how to manipulate images using the WriteableBitmap class.

The easiest way to convert an image to gray scale is to set the RGB values of every pixel to the average of each pixels RBG values.

R = (R + B + G) / 3
G = (R + B + G) / 3
B = (R + B + G) / 3

Here's a code snippet for manipulating a BitmapSource object using the WriteableBitmap class into a gray scale image:

public unsafe static BitmapSource ToGrayScale(BitmapSource source)

{

    const int PIXEL_SIZE = 4;

    int width = source.PixelWidth;

    int height = source.PixelHeight;

    var bitmap = new WriteableBitmap(source);

 

    bitmap.Lock();

    var backBuffer = (byte*)bitmap.BackBuffer.ToPointer();

    for (int y = 0; y < height; y++)

    {

        var row = backBuffer + (y * bitmap.BackBufferStride);

        for (int x = 0; x < width; x++)

        {

            var grayScale = (byte)(((row[x * PIXEL_SIZE + 1]) + (row[x * PIXEL_SIZE + 2]) + (row[x * PIXEL_SIZE + 3])) / 3);

            for (int i = 0; i < PIXEL_SIZE; i++)

                row[x * PIXEL_SIZE + i] = grayScale;

        }

    }

    bitmap.AddDirtyRect(new Int32Rect(0, 0, width, height));

    bitmap.Unlock();

 

    return bitmap;

}


Another way to to convert an image to gray scale is to set the RGB values of every pixel to the sum of 30% of the red value, 59% of the green value, and 11% of the blue value. Hope you find this useful.
Published at DZone with permission of Christian Helle, author and DZone MVB. (source)

(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)