Canny Edge Image - Noise removal

后端 未结 3 1596
轻奢々
轻奢々 2020-12-05 16:10

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 th

3条回答
  •  自闭症患者
    2020-12-05 16:55

    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

提交回复
热议问题