next up previous
Next: High-boost filtering Up: gradient Previous: gradient

Sharpening

As the opposite of low-pass filtering for image smoothing and noise reduction, high-pass filtering can sharpen the image, thereby enhancing and emphasizing the detailed information (high spatial frequency components) in the image.

High-pass filtering can be carried out by subtracting the low-pass filtered image from its original version, which can be considered as all-pass filtered by a delta function kernel:

\begin{displaymath}
W_{ap}=\left[ \begin{array}{ccc} 0 & 0 & 0  0 & 1 & 0 \\
0 & 0 & 0 \end{array} \right]
\end{displaymath}

When an image is convolved with this delta function is not changed:

\begin{displaymath}
W_{ap} * I_o = I_o
\end{displaymath}

As convolution is a linear operation, we have

\begin{displaymath}
I_{hp}&=& I_{ap}-I_{lp}=W_{ap}*I_o-W_{lp}*I_o
=(W_{ap}-W_{lp})*I_o=W_{hp}*I_o
\end{displaymath}

where $W_{hp}=W_{ap}-W_{lp}$ is the high-pass kernel corresponding to the low-pass kernel $W_{lp}$. Equivalently the frequency domain filtering is shown in the figure:

HighLowPassFilter.png HighLowPassFilter1.png

We can therefore obtain a high-pass filtering kernel corresponding to each of the low-pass filter kernels by subtracting the low-pass kernel from the all-pass kernel. The resulting kernels are various forms of high-pass filtering kernels, also called the Laplace operators.

Note that the sum of all elements of the resulting high-pass filter is always zero. When such a high-pass kernel is convolved with a region of an image where all pixels have same gray level (constant or DC component), the result is zero, i.e., the zero spatial frequency component is totally suppressed by the high-pass filter.

Similar band-pass filters can be obtained by finding the difference between two low-pass filters of different cut-off frequencies.

low_band_pass_filter.gif

The following figure shows the original image, a cat (left), and its low-pass (middle) and high-pass (right) filtered versions.

spatialfiltering.gif


next up previous
Next: High-boost filtering Up: gradient Previous: gradient
Ruye Wang 2016-10-18