Filling one type of holes in a binary image
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aktham Shoukry
il 1 Feb 2022
Commentato: Aktham Shoukry
il 1 Feb 2022
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?
0 Commenti
Risposta accettata
Steve Eddins
il 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!