Methods of Detecting and Removing Protrusions in Image

4 views (last 30 days)
Is there any way to remove only the red shaded area of an image like the one below?
The data is a binary image and is binarized.
The image we are recognizing is basically a figure like the one on the left, so we can use bwareafilt to extract the maximum structure.
However, sometimes we get images like the one on the right. It does not mean that every time they are attached.
It would be best if we could set a threshold (if they are too close together, we recognize them as one), since the degree of attachment of the two objects varies.
We would appreciate it if you could let us know.
  5 Comments
HanaHana
HanaHana on 15 Aug 2024
Thank you for the further detailed introduction.
I am using the following image. 
I would like to extract the following yellow parts and to erase the red and blue areas.
What I want to recognize is "approximately" an oval shape, so I want to remove the part that extends outside of the oval shape.
If it's difficult to define the blue areas, I'd like to just erase the red areas that are obviously popping up.
Catalytic
Catalytic on 15 Aug 2024
What I want to recognize is "approximately" an oval shape, so I want to remove the part that extends outside of the oval shape.
There is no unique oval shape that fits your images. You need a more well-defined criterion.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 15 Aug 2024
How about this:
% Read in image.
grayImage = imread('blobs5.jpeg');
% Convert to binary.
binaryImage = grayImage(:,:,2) > 128;
% Get rid of white stripes along the edges.
binaryImage = binaryImage(2 : end-2, 2:end-1);
subplot(2, 2, 1)
imshow(binaryImage);
title('Initial Image')
axis('on', 'image');
radius = 3;
se = strel('disk', radius, 0); % Create structuring element. Change the 3 as necessary.
binaryImage2 = imerode(binaryImage, se); % Erode the image to separate the blobs.
subplot(2, 2, 2)
imshow(binaryImage2);
binaryImage2 = bwareafilt(binaryImage2, 1, 4); % Take largest blob only.
subplot(2, 2, 3)
imshow(binaryImage2);
radius = 5;
se = strel('disk', radius, 0); % Create structuring element. Change the 5 as necessary.
binaryImage2 = imdilate(binaryImage2, se); % Regrow.
% Make sure dilated version doesn't stick out past the original.
binaryImage2 = binaryImage2 & binaryImage;
binaryImage2 = bwareafilt(binaryImage2, 1, 4); % Take largest blob only.
subplot(2, 2, 4)
imshow(binaryImage2);
axis('on', 'image');
title('Final Image')
  1 Comment
HanaHana
HanaHana on 16 Aug 2024
This is exactly what I have been looking for!! Thank you from the bottom of my hearts.

Sign in to comment.

More Answers (2)

Matt J
Matt J on 13 Aug 2024
Edited: Matt J on 13 Aug 2024
Use bwlalphaclose from this FEX package,
load Image
BW2=bwareafilt( ~bwlalphaclose(~BW,15) ,1);
montage({BW,BW2},[],'Bord',[5,5],'Back','w')
  2 Comments
HanaHana
HanaHana on 15 Aug 2024
Thanks for introducing me to this precious package.I will use it.
Thank you.
Matt J
Matt J on 15 Aug 2024
You're welcome, but please Accept-click the answer to indicate that it solved the problem for you.

Sign in to comment.


Image Analyst
Image Analyst on 14 Aug 2024
Yes, you just call imerode to eat away enough layers such that the blob separates into two blobs. Then you "thicken" the image with bwmorph which will restore the two blobs to their original size but not let them merge. Then call bwareafilt to select the largest blob. Something like this (untested)
se = strel('disk', 5, 0); % Create structuring element. Change the 5 as necessary.
mask = imerode(mask, se); % Erode the image to separate the blobs.
mask = bwmorph(mask, 'thicken', inf); % Regrow without merging.
mask = bwareafilt(mask, 1); % Take largest blob only.
  1 Comment
HanaHana
HanaHana on 15 Aug 2024
Thank you for your detailed and thorough explanation. I found out how to use bwmorph.

Sign in to comment.

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!