Hello, I have a desire to work with National Weather Service Radar Images. In the United State the NWS provides a service where GIF images are updated every 5 minutes or so with the latest snapshot from a dopler radar site
Here's a URL explaining all this: http://radar.weather.gov/GIS.html In short these images are GIF files with a 256 color pallete. The "interesting" pixels in these images are red, green, yellow and blue. The pixels representing radar "noise" usually appear as brown, grey, and purple. My desire is to iterate over all pixels and remove the noise. The pseudo code would look something like this: for pixel in radar_image: if pixel is noise: turn pixel white else: do nothing I'm having a hard time with this. Can anyone provide some insight into a method? It would be greatly appreciated. Thanks! J.D. _______________________________________________ Image-SIG maillist - Image-SIG@python.org http://mail.python.org/mailman/listinfo/image-sig