Canny Edge Image - Noise removal

笑着哭i 提交于 2019-11-27 20:54:13

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.

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:

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!