How to remove thin lines in binary image

7 次查看(过去 30 天)
How to remove thin horizontal or verticle lines - image attached
line thinkness < 3 -- remove
lines thinkness > 5-- stay
small objects -- remove

回答(2 个)

Matt J
Matt J 2023-10-30
编辑:Matt J 2023-10-30
Image=imopen(Image,ones(3));

Image Analyst
Image Analyst 2023-10-30
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.

Community Treasure Hunt

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

Start Hunting!

Translated by