blur convolves the source image with the specified
normalized box kernel (a matrix of 1s divided by the number of pixels in the
kernel). The result is a blurred version of the source image.
blur(image, k_height = 5, k_width = 5)| image | An |
|---|---|
| k_height | The half-height in pixels of the kernel (default: 5). |
| k_width | The half-width in pixels of the kernel (default: 5). |
image An Image object.
Simon Garnier, garnier@njit.edu
# TODO