Kernel (image processing)

In image processing, a kernel, convolution matrix, or mask is a small matrix used for blurring, sharpening, embossing, edge detection, and more.

This is accomplished by doing a convolution between the kernel and an image.

Or more simply, when each pixel in the output image is a function of the nearby pixels (including itself) in the input image, the kernel is that function.

The general expression of a convolution is

Every element of the filter kernel is considered by

Depending on the element values, a kernel can cause a wide range of effects:

The above are just a few examples of effects achievable by convolving kernels and images.

The origin is the position of the kernel which is above (conceptually) the current output pixel.

This could be outside of the actual kernel, though usually it corresponds to one of the kernel elements.

For a symmetric kernel, the origin is usually the center element.

Convolution is the process of adding each element of the image to its local neighbors, weighted by the kernel.

This is related to a form of mathematical convolution.

The matrix operation being performed—convolution—is not traditional matrix multiplication, despite being similarly denoted by *.

For example, if we have two three-by-three matrices, the first a kernel, and the second an image piece, convolution is the process of flipping both the rows and columns of the kernel and multiplying locally similar entries and summing.

The element at coordinates [2, 2] (that is, the central element) of the resulting image would be a weighted combination of all the entries of the image matrix, with weights given by the kernel:

The other entries would be similarly weighted, where we position the center of the kernel on each of the boundary points of the image, and compute a weighted sum.

The values of a given pixel in the output image are calculated by multiplying each kernel value by the corresponding input image pixel values.

This can be described algorithmically with the following pseudo-code: If the kernel is symmetric then place the center (origin) of the kernel on the current pixel.

The kernel will overlap the neighboring pixels around the origin.

Each kernel element should be multiplied with the pixel value it overlaps with and all of the obtained values should be summed.

This resultant sum will be the new value for the current pixel currently overlapped with the center of the kernel.

If the kernel is not symmetric, it has to be flipped both around its horizontal and vertical axis before calculating the convolution as above.

[1] The general form for matrix convolution is

Kernel convolution usually requires values from pixels outside of the image boundaries.

There are a variety of methods for handling image edges.

Normalization is defined as the division of each element in the kernel by the sum of all kernel elements, so that the sum of the elements of a normalized kernel is unity.

This will ensure the average pixel in the modified image is as bright as the average pixel in the original image.

Fast convolution algorithms include: 2D convolution with an M × N kernel requires M × N multiplications for each sample (pixel).

If the kernel is separable, then the computation can be reduced to M + N multiplications.

Here a concrete convolution implementation done with the GLSL shading language :

2D Convolution Animation
Extend Edge-Handling