How to remove thin lines in binary image

How to remove thin horizontal or verticle lines - image attached
line thinkness < 3 -- remove
lines thinkness > 5-- stay
small objects -- remove

回答(2 个)

Like Matt said, use imopen to get rid of thin lines.
outputImage = imopen(binaryImage, ones(3, 3));
To get rid of small objects, of any shape, use bwareaopen or bwareafilt.

提问:

Az
2023-10-30

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by