next up previous contents
Next: 13.3.5.6.1 Horizontal Up: 13.3.5 Useful Convolution Filters Previous: 13.3.5.5 Laplacian Filter   Contents

13.3.5.6 Sobel Filter

The Sobel filter consists of two kernels which detect horizontal and vertical changes in an image. If both are applied to an image, the results can by used to compute the magnitude and direction of the edges in the image. If the application of the Sobel kernels results in two images which are stored in the arrays Gh[0..(height-1][0..(width-1)] and Gv[0..(height-1)][0..(width-1)], the magnitude of the edge passing through the pixel x, y is given by:

\begin{displaymath}
M_{sobel}[x][y] = \sqrt{Gh[x][y]^2 + Gv[x][y]^2} \approx
\left\vert Gh[x][y] \right\vert + \left\vert Gv[x][y] \right\vert
\end{displaymath}

(you are justified in using the magnitude representation since the values represent the magnitude of orthogonal vectors). The direction can also be derived from Gh and Gv:

\begin{displaymath}
\phi_{sobel}[x][y] = tan^{-1}(\frac{Gv[x][y]}{Gh[x][y]})
\end{displaymath}

The 3x3 Sobel kernels are:

Subsections

2001-01-10