Filling one type of holes in a binary image

3 ビュー (過去 30 日間)
Aktham Shoukry
Aktham Shoukry 2022 年 2 月 1 日
コメント済み: Aktham Shoukry 2022 年 2 月 1 日
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?

採用された回答

Steve Eddins
Steve Eddins 2022 年 2 月 1 日
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 件のコメント
Steve Eddins
Steve Eddins 2022 年 2 月 1 日
Thanks! And welcome to MATLAB Answers!
Aktham Shoukry
Aktham Shoukry 2022 年 2 月 1 日
Thank you again!

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by