To translate an image from color to black and white, how is that normally done? My guess is that the RGB values of each pixel averaged?
Judging by my output (which is all plain pixels anyway), averaging the pixels works well. Gg! :)
iago..... Its easy. Instead of RGB mode you use greyscale :-). Then when you switch it back Im pretty sure its still black and white.
I'm not talking about photoshop, I'm writing a program. I have the RGB for each pixel, but I wanted to make them into greyscale.
oh well gj.
I found a formula on some website for it:
(0.3*red) + (0.59*green) + (0.11*blue)
Apparently, that's better.