How to remove unwanted areas from binary image ?
Ältere Kommentare anzeigen
I want to remove unwanted portion from the binary image to get a clear hand image .
Antworten (2)
Image Analyst
am 2 Jan. 2021
1 Stimme
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 Kommentare
Zara Khan
am 3 Jan. 2021
Zara Khan
am 3 Jan. 2021
Image Analyst
am 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
am 3 Jan. 2021
Image Analyst
am 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
am 3 Jan. 2021
Image Analyst
am 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
am 5 Jan. 2021
Zara Khan
am 8 Jan. 2021
Ritankar Sahu
am 2 Jan. 2021
0 Stimmen
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 Kommentare
Zara Khan
am 3 Jan. 2021
Ritankar Sahu
am 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
am 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
am 5 Jan. 2021
Kategorien
Mehr zu Color Segmentation finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!