Filling one type of holes in a binary image

6 views (last 30 days)
Hello, I am trying to obtain a mask from this image, such that the gray represents the walls and the nice plus-shaped channels should be the "holes" to be filled. There are other semi-rectangular holes that are basically grains that I do not want it filled. I tried imfill, imclose, bwareaopen, and combinations of these but still could not reach a satisfying solution. Can you please help me out?

Accepted Answer

Steve Eddins
Steve Eddins on 1 Feb 2022
Based on your description of what you're trying to do, I ask the question: how are the semi-rectangular grains, which you want to keep, different from the channels, which you want to fill? Well, the channels are relatively thin in one dimension, either horizontally or vertically. So, perhaps a morphological erosion can be constructed that will keep a portion of each grain, while completely eliminating the channels.
First, a bit of preprocessing.
rgb = imread("image.jpeg");
A = rgb2gray(rgb);
B = imcomplement(A);
imshow(B)
The channels seem to be approximately 10 pixels thick, while the grains around 50-by-50. Let's erode with a square structuring element with a size that's in between.
C = imerode(B,ones(25,25));
imshow(C)
Next, use morphological reconstruction to restore the original grain shapes.
D = imreconstruct(C,B);
imshow(D)
Finally, complement once more to make the grains dark again.
E = imcomplement(D);
imshow(E)
Is this what you are looking for? If you need to eliminate the partial grains along the image border, see imclearborder.
  9 Comments
Steve Eddins
Steve Eddins on 1 Feb 2022
Thanks! And welcome to MATLAB Answers!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!