How to remove unwanted object from an image?

4 views (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 30 Jan 2022
Assuming you have a binary image
mask = bwareafilt(~mask, 1); % Take largest blob only.
  6 Comments
Animesh Biswas
Animesh Biswas on 22 Mar 2022
Yes all the images are same. The object and and the boudary have same color (black in this case). According to you, I can mask only the boarder to make it white right? Could you please help how to mask diffeent parts of the image with different colors? Thanks
Image Analyst
Image Analyst on 22 Mar 2022
To whiten:
backgroundMask = imread('mask.png') > 128;
grayImage(backgroundMask) = 255; % Whiten

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!