Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Mid-level processing

After having seen the low level components of image processing, we can now move to mid level elements that utilize the tools seen so far, and by combining them create more advanced features for image processing.

Mid level processing

We’ll look into:

  • Edge detection
  • Line detection

Edge detectors

Edge detectors highlight edges in an image. Specifically, an edge can be caused by a variety of factors, for example

Types of discontinuities

We will use derivatives, specifically gradients and Laplacians. We’ll use them to find different features of the edges

First and second order derivatives

For example

First and second order derivatives examples

We can furthermore divide the edges into different kinds with respect to the gradient shape

Step versus ramp versus roof

Note: derivatives amplify the noise—2nd derivatives more than 1st.

Noise amplification

Detecting edges using first order derivatives

What is a gradient and first order derivatives: In the continuous case

f(x,y)=[fx,fy]:=[gx,gy]\nabla f(x, \, y) = \left[\dfrac{\partial f}{\partial x}, \, \dfrac{\partial f}{\partial y}\right] := [g_x, \, g_y]

While in the discrete case

gx=f(x+1,y)f(x,y)gy=f(x,y+1)f(x,y)g_x = f(x+1, \, y) - f(x, \, y)\\ g_y = f(x, \, y+1) - f(x, \, y)

The gradient points towards the fastest varying direction.

By considering the magnitude and the phase of the gradient, we can infer information about edge features

Magnitude:f(x,y)=gx2+gy2Phase:α:=θ=tan1(gygx)\begin{aligned} &\text{Magnitude:}&&||\nabla f(x, \, y)|| = \sqrt{g_x^2+g_y^2}\\[10pt] &\text{Phase:} && \alpha := \theta = \tan^{-1}\left(\dfrac{g_y}{g_x}\right) \end{aligned}
Gradients and edge directions

By using gradient masks and the Sobel operator, we can detect edges in multiple directions. The Sobel edge detector is named after its inventor, Irwin Sobel, this operator utilizes convolution with a pair of small, separable filters to compute the gradient magnitude of an image, effectively pinpointing regions of significant intensity variation. By detecting abrupt changes in pixel intensity, the Sobel edge detector offers valuable insights into the structure and boundaries of objects within an image.

Sobel filters and edge direction

Through the usage of Sobel filters we can therefore detect edges along xx and yy directions, as well as in the diagonal directions. An example usage is shown below using the magnitude as the edge detection

Magnitude edge detection

If we were to use the angle we would get the following image

Angle edge detection

In which areas with the same intensity have similar features.

Detecting edges with second order derivatives

What is a Laplacian and second order derivatives: In the continuous case, the Laplacian is

2f(x,y)=2fx2+2fy2\nabla^2 f(x, \, y) = \dfrac{\partial^2f}{\partial x^2} + \dfrac{\partial^2 f}{\partial y^2}

Where

2f(x,y)x2=f(x+1,y)+f(x1,y)2f(x,y)\dfrac{\partial^2 f(x, \, y)}{\partial x^2} = f(x+1, \, y) + f(x-1, \, y) - 2f(x, \, y)

In the discrete domain

2f(x,y)=f(x+1,y)+f(x1,y)+f(x,y+1)+f(x,y1)4f(x,y)\nabla^2 f(x, \, y) = f(x+1, \, y) + f(x-1, \, y) + f(x, \, y+1) + f(x, \, y-1) -4f(x, \, y)

Visually, applying the Laplacian to detect edges, we get

Laplacian filter can be used to detect edges

From the Laplacian, we can derive the anisotropic detectors, which offer four available directions

Anisotopic detectors

And can be used to detect edges in a certain direction. In the following example at 45 degrees.

Anisotropic detectors

Note: images in the middle are zoomed in views of the top left and bottom right region, while image on the bottom left has all negative values set to 0 and image on the bottom right has some points set to white that are above a certain threshold given by the other image next to it.

Writing an edge detection algorithm

  1. Apply low-pass filter for noise removal
  2. Calculate gradient
  3. Apply gradient thresholding, specifically f>T|\nabla f| > T

The final result is shown in the bottom right image:

Edge detection algorithm

Notes:

The effect of smoothing is often useful prior to the computation of the gradient to minimize the amount of “wrong edges” that are detected

rong edged

By applying thresholding we can separate the stronger edged from the others. The final effect depends on the amount of smoothing applied as well

Thresholding

We can then calculate the diagonal edges by using Sobel filters

Detecting diagonal edges with sobel filter
Did you find this article interesting?
YesNo