clean noise from an image

后端 未结 4 1635
北荒
北荒 2020-12-15 15:06

I need to know how to clean noise from an image with Matlab.

lets look at this example:

\"enter

4条回答
  •  被撕碎了的回忆
    2020-12-15 15:42

    I think there are two things you could aim to do to make them more detectable:

    1. Remove patches smaller than a certain number of pixels (this would remove the spots between the sets of digits)
    2. Numbers should be "closed" forms, so you need an algorithm to detect the pixels (at the top of each number) that should be changed to black in order to "close" the number "shapes".

    You also have linear features that are a part of the noise signal which could be detected through edge / line detection.

    Detecting contiguous "zones" and calculating characteristics such as compactness or length / height might also help in identifying which structures to keep...

提交回复
热议问题