How to remove unwanted object from an image?
4 views (last 30 days)
Show older comments
Animesh Biswas
on 30 Jan 2022
Commented: Image Analyst
on 22 Mar 2022
In my attached image, I want to remove all the black dots on the right side of the image. I want to keep the object on the left side (long filament object.) How could I do without changing the threshold value? Changing threshold values I am actually loosing some pixel from the long object. Please help, I am new in Image analysis.
Thank you

0 Comments
Accepted Answer
Image Analyst
on 30 Jan 2022
Assuming you have a binary image
mask = bwareafilt(~mask, 1); % Take largest blob only.
6 Comments
Image Analyst
on 22 Mar 2022
To whiten:
backgroundMask = imread('mask.png') > 128;
grayImage(backgroundMask) = 255; % Whiten
More Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!