This is a simple bitmap image processor and convolution algorithm written in C, that currently applies either box blur, Gaussian blur or Laplacian edge-detection to an image
The input image must be named "input.bmp" and placed in the input directory. There are also example images for you.
The output will be generated as "output.bmp" in the output directory.
The algorithm uses edge-extension as its edge handling.
The size of the kernel, and the size of the variance for Gaussian blur, can be edited in src/convolution.c. The kernel width/height must be an odd number (though this will probably change in the future). Larger kernel sizes return weird results for edge-detection.