A program that applies filters to BMPs.
The four filters implemented are Grayscale (-g), Reflection (-r) and Blur (-b).
The following commands can be used to generate different filtered images.
$ ./filter -g INFILE.bmp OUTFILE.bmp
$ ./filter -r INFILE.bmp OUTFILE.bmp
$ ./filter -b INFILE.bmp OUTFILE.bmp
INFILE.bmp
is the name of the input image and OUTFILE.bmp
is the name of the resulting image after a filter has been applied.