Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C#

Convert RGB to Gray Scale without using Pointers

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
13 Jan 2012CPOL1 min read 69.4K   5  
Simple way of converting RGB Image to Gray Scale Image without using any pointers

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
13 Jan 2012Luc Pattyn
This is an alternative to "Convert RGB to Gray Scale Without Using Pointers".
Please Sign up or sign in to vote.
17 Jan 2012YvesDaoust
You shouldn't rely on methods from the .NET classes (Bitmap::SetPixel, Bitmap::GetPixel, Color::FromArgb) in the inner loop as these are called intensively, million times per image, and their implementation are opaque to you.If their implementation is opaque to the compiler too, no code...
Please Sign up or sign in to vote.
17 Jan 2012Paw Jershauge
I would use the colormatrix for that... Look here under the grayscale methodhttp://pawjershauge.blogspot.com/2010/09/imagedrawing-extensions.html
Please Sign up or sign in to vote.
18 Jan 2012YvesDaoust
A piece of warning, though: the LockBits method is not a transparent one, it does image format conversion before returning a pointer to the bitmap (this is why it has a PixelFormat argument). And conversely, the UnlockBits method converts back to the original format. My best guess is that when...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Integrated Ideas
India India
gasshopper.iics is a group of like minded programmers and learners in codeproject. The basic objective is to keep in touch and be notified while a member contributes an article, to check out with technology and share what we know. We are the "students" of codeproject.

This group is managed by Rupam Das, an active author here. Other Notable members include Ranjan who extends his helping hands to invaluable number of authors in their articles and writes some great articles himself.

Rupam Das is mentor of Grasshopper Network,founder and CEO of Integrated Ideas Consultancy Services, a research consultancy firm in India. He has been part of projects in several technologies including Matlab, C#, Android, OpenCV, Drupal, Omnet++, legacy C, vb, gcc, NS-2, Arduino, Raspberry-PI. Off late he has made peace with the fact that he loves C# more than anything else but is still struck in legacy style of coding.
Rupam loves algorithm and prefers Image processing, Artificial Intelligence and Bio-medical Engineering over other technologies.

He is frustrated with his poor writing and "grammer" skills but happy that coding polishes these frustrations.
This is a Organisation

115 members

Comments and Discussions