Image processing using a kernel (convolution matrix) for blurring, sharpening, embossing, edge detection, and more.
- download the following files into a directory: conv.c, conv.h, makefile, main_conv.c, edge
- use
maketo create the./filtercommand - use
./filter {inputfile.ppm} {kernel} {outputfile.ppm}to create new image - open image :)
After downloading all files necessary, proceed to downloading the flowers.ppm file. Follow the steps instructed:
- in the same directory as the files, run
make - run
./filter flowers.ppm edge flowersEdge.ppm - open flowersEdge.ppm :)
Thank you

