next up previous contents
Next: 13.3.5.6 Sobel Filter Up: 13.3.5 Useful Convolution Filters Previous: 13.3.5.4.2 Basic High-Pass Filter:

13.3.5.5 Laplacian Filter

The Laplacian is used to enhance discontinuities. The 3x3 kernel is:

\begin{displaymath}\left[
\begin{array}{r r r}
0 & -1 & 0 \\
-1 & 4 & -1 \\
0 & -1 & 0 \\
\end{array}
\right]
\end{displaymath}

and the 5x5 is:

\begin{displaymath}\left[
\begin{array}{r r r r r}
1 & 1 & 1 & 1 & 1 \\
1 & 1 &...
...& 1 & 1 & 1 & 1 \\
1 & 1 & 1 & 1 & 1 \\
\end{array}
\right]
\end{displaymath}



David Blythe
1999-08-06