...
/Kernels in Convolutional Network Operations
Kernels in Convolutional Network Operations
Explore convolution’s role in filtering images through discrete kernels, enhancing pattern recognition.
We'll cover the following...
Convolution
Convolution is a filtration process, a filter is made of the kernel(s), and a kernel is a mathematical representation of a filter.
Kernels can be either continuous or discrete functions. Discrete kernels are commonly used in convolutional networks due to their flexibility. This choice is similar to fitting an empirical distribution in statistical analysis. Discrete kernels make convolutional networks robust to the distribution of input features.
Suppose, is a discrete kernel and is a mono-channel image, then the convolution of and is expressed as:
Here, is a two-dimensional kernel because is two-dimensional. The dimensions here are spatial. The term dimension can be confused with the number of features for statisticians. Therefore, the axis denotes a spatial dimension.
A convolution operation involves sweeping the input. The sweeping occurs along each axis of the input. Therefore, because the input has two axes, the convolution operation in the equation above is a double summation along both.
A mono-channel image is a two-axes matrix. For illustration, suppose the image is a matrix:
...