Adam
Adam

Reputation: 610

Canny Edge Image - Noise removal

I have a Canny edge detected image of a ball (see link below) which contains a lot of noisy edges. What are the best image processing techniques that I can use to remove these noisy edges without removing the edges belonging to the ball?

Original image

original

Canny edge image

canny

Many thanks everyone in advance for your help and advice, much appreciated!

Ps I am trying to clean up the edge image prior to using the Circle Hough Transform to detect the ball.

Upvotes: 10

Views: 20093

Answers (3)

Jeru Luke
Jeru Luke

Reputation: 21203

Canny edge detection works best only after you set optimal threshold levels (lower and upper thresholds)

How do you set them?

  • First, calculate the median of the gray scale image.
  • Choose the optimal threshold values using the median of the image.

The following pseudo-code shows you how its done:

v = np.median(gray_img)
sigma = 0.33

#---- apply optimal Canny edge detection using the computed median----
lower_thresh = int(max(0, (1.0 - sigma) * v))
upper_thresh = int(min(255, (1.0 + sigma) * v))

Set lower_thresh and upper_thresh as the parameters for the canny edge function.

sigma is set to 0.33 because in statistics along a distribution curve, values lying between 33% from the start and end of the curve are considered. Values lying beyond and below this curve as considered to be outliers.

This is what I got for your image:

enter image description here

Upvotes: 9

gui
gui

Reputation: 425

The best option is to filter the image before applying the edge detector. In order to keep the sharp edges you need to use a more sophisticated filter than the Gaussian blur.

Two easy options are the Bilateral filter or the Guided filter. These two filters are very easy to implement and they provide good results in most cases: gaussian noise removal preserving edges. If you need something more powerful, you can try the filter BM3D, which is one of the state-of-the-art filters, and you can find an open source implementation here.

Upvotes: 10

Samuel Barnett
Samuel Barnett

Reputation: 434

The best way to remove those is probably not to have them in the first place if you can. If the lines are noisy artifacts in the image apply a smoothing filter such as a Gaussian to level the image out. -> Gaussian filter info

Removing them once they are there is tricky and would probably involve some higher level shape recognition stuff

Upvotes: 2

Related Questions