I have an image.
I would like to go over that image, pixel by pixel, and any pixel that is not black should be turned to white. How do I do this?
(Python).
Thanks!
|
|
I have an image. I would like to go over that image, pixel by pixel, and any pixel that is not black should be turned to white. How do I do this? (Python). Thanks!
|
||
|
|
|
|
You should use the
|
||
|
|
The most efficient way is to use the point function
This is what the PIL documentation has to say about this:
|
|||
|
|
|
You might want to check out the following library: http://www.pythonware.com/library/pil/handbook/image.htm Especially:
and
|
||||||
|