First taste at Image Processing
Last August 15, 2018, we had our first taste at image processing. While we didn't do anything hardcore, it was still fun to do since this was new to us, so the possibilities were endless. The first thing we were told to do was to create 30x30 images, either manually or through programming them. It wasn't really straightforward doing both since we were making .pgm images, a not-so-familiar image file-type that can be edited easily using Paint. A .pgm, or portable gray map image [1], is a very simple image file-type that encodes images using gray values on a scale from 0 to 255 where 0 represents black, and 255 white. Essentially, when encoding or editing .pgm files, all you need to do is to edit the gray scale values of each pixel in the image, and you get your result after saving it. How easy! In our case, we were tasked to create seven images, a dot, outline of a square, cross, filled circle, concentric squares of different gray values, and the first letter of my name whic...