How to remove unwanted areas from binary image ?
Show older comments
I want to remove unwanted portion from the binary image to get a clear hand image .
Answers (2)
Image Analyst
on 2 Jan 2021
1 vote
Rather than cleaning up a horrible segmented image, you're best off trying to improve the segmentation process. How did you do that lousy job? Was it though color segmentation? Thresholding? Background subtraction? What was it???
9 Comments
Zara Khan
on 3 Jan 2021
Zara Khan
on 3 Jan 2021
Image Analyst
on 3 Jan 2021
Yeah, and that does not look like a very good method. Maybe you should try something else, like color segmentation (see my file Exchange or use the Color thresholder app on the Apps tab of the tool ribbon). Or maybe try the foreground detector in the Computer Vision Toolbox.
Zara Khan
on 3 Jan 2021
Image Analyst
on 3 Jan 2021
Why is that an actual image? It looks like a screenshot. And it's been ruined by a pseudocolor look up table (colormap), and has axes and tick labels and marks. Don't you have the original image before you called imagesc() and colormap()?
Zara Khan
on 3 Jan 2021
Image Analyst
on 5 Jan 2021
OK, if you called imagesc() then you did something like this:
imagesc(grayImage);
So you have a gray scale image. That's what was needed. You just need to attach it. Just do this right before or after you call imagesc:
imwrite(grayImage, 'answers.png');
then attach answers.png with either the frame icon or the paper clip icon.
Zara Khan
on 5 Jan 2021
Zara Khan
on 8 Jan 2021
Ritankar Sahu
on 2 Jan 2021
0 votes
Hi Zara,
You can try to apply 'bwmorph' function to remove the distant areas. 'dilate', 'bridge', 'clean' these options may be helpful!! If you be unsuccessful, write me back, I will try to find other options.
Have a nice day!
4 Comments
Zara Khan
on 3 Jan 2021
Ritankar Sahu
on 5 Jan 2021
There can be many!
- 'clean' - Removes isolated pixels (individual 1s that are surrounded by 0s).
- 'fill' - Fills isolated interior pixels (individual 0s that are surrounded by 1s).
It will be better to follow the undermentioned page.
Good Luck!
Ritankar Sahu
on 5 Jan 2021

Please check the image and tell me which looks better for you to go for binarization. Which one you want? The hand or the dude?
Good Luck!!
Zara Khan
on 5 Jan 2021
Categories
Find more on Color Segmentation 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!