标签:
The frequently used 3x3 convolution kernels are listed below with some short description. At the end of this post there is an interactive demo, where you can try and play with different 3x3 kernels. For the mathematical background of the usage of these kernels, please read the previous post on two dimensional convolution.
This kernel is used for noise reduction and blurring the image. Must be normalized, otherwise the result may not fit the (0, 255) range.
This kernel is used to enhance the small differences and edges in the image.
These kernels are sensitive to the edges. Kernel E is for detecting in both directions, while EH and EV are sensitive for the horizontal and vertical edges respectively.
Kernels GH and GV are to calculate the magnitude of the horizontal and the vertical gradient.
Sobel operators are similar to the gradient kernels approximating the smoothed gradient of the image in horizontal and vertical directions. It can be seen from the decomposing, that this operator is a combination of a gradient detector and a smoothing kernel.
This kernel creates an embossing effect, can be rotated to modify the direction of this operator.
This program demonstrates using 3x3 convolution kernels on classic image processing source images. Please click on the label to load the application. It shall run in every modern browser, including IE9+.
Demo APP见原文
You can use the currently filtered image as source by clicking the Use filtered image button. Some predefined kernels can be chosen, but values are directly selectable too. Setting Filter normalization divides the convolution result by the summary of the elements in the kernel. It is important to mention, that on the result image the absolute output values are shown.
标签:
原文地址:http://www.cnblogs.com/lutingting/p/5188552.html