How can I remove the small blobs in ‘Blobs.jpg’? is it using filtering right? i got confused with the step to remove the blob on that image.

8 ビュー (過去 30 日間)
NUR AISHAH MUSTAFFA
NUR AISHAH MUSTAFFA 2015 年 4 月 13 日
回答済み: DGM 2022 年 11 月 27 日

回答 (1 件)

DGM
DGM 2022 年 11 月 27 日
Something like this:
% read an image
inpict = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/148990/image.jpeg');
% binarize the image somehow
mask = imbinarize(inpict); % pick a method
imshow(mask)
% remove blobs that are smaller than a particular area
mask = bwareaopen(mask,100); % pick a size
imshow(mask)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by