How to remove unwanted areas from binary image ?

I want to remove unwanted portion from the binary image to get a clear hand image .

답변 (2개)

Image Analyst
Image Analyst 2021년 1월 2일

1 개 추천

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

It's gray image.
I have followed thresholding method for segmenting the gray image.
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.
See the actual image which has been attached as image 3. I am converting it to a gray scale image then applying thtresholding which not giving a clear hand segments.
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()?
It's a .bin file . I am visualizing this using imagesc
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.
I have attached a gray image here.
The gray image has been attached.

댓글을 달려면 로그인하십시오.

Ritankar Sahu
Ritankar Sahu 2021년 1월 2일

0 개 추천

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

any demo please !
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!
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!!
the hand ofcourse

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

질문:

2021년 1월 2일

댓글:

2021년 1월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by