I have an image that I would like to set pixels to White if pixel(x,y).R < 165.
After that I would like to set Black all the pixels that aren't White.
Can I do this using ColorMatrix?
|
I have an image that I would like to set pixels to White if pixel(x,y).R < 165. After that I would like to set Black all the pixels that aren't White. Can I do this using ColorMatrix?
| |||
|
feedback
|
|
You can't do that with a colormatrix. A colormatrix is good for linear transforms from one color to another. What you need is not linear. | |||||||
feedback
|
|
A good way to do these relatively simple image manipulations is to get directly at the bitmap data yourself. Bob Powell has written an article on this at http://www.bobpowell.net/lockingbits.htm. It explains how to lock a bitmap and access its data via the Marshal class. I've also written an article that extends on this a bit. The biggest difference is that I copy the image data to an int array, which can make things a bit simpler. http://ilab.ahemm.org/tutBitmap.html It's good to have a struct along these lines:
Just create a new Pixel object, and you can set its data via the Int32 field and read back/modify the individual color components.
| |||
|
feedback
|