Methods of Detecting and Removing Protrusions in Image
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
Catalytic
2024-8-15
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.
采纳的回答
Image Analyst
2024-8-15
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')
更多回答(2 个)
Image Analyst
2024-8-14
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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!