How to fill a gap between line segments in an image

6 次查看(过去 30 天)
I am working on raster images. How I can fill up this gap between line segments, as shown in figure below.
the raster image file is enclosed. Kindly advice.

采纳的回答

Matt J
Matt J 2022-6-4
编辑:Matt J 2022-6-4
load gap
Irasterl=imclose(Irasterl,ones(3));
imshow(Irasterl,[])

更多回答(1 个)

Image Analyst
Image Analyst 2022-6-4
For single pixel gaps you can also use bwmorph with the 'bridge' option.
Irasterl = bwmorph(Irasterl, 'bridge');

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by