필터 지우기
필터 지우기

Can someone help me filling holes in the image attached and make it a perfect binary image with all holes filled?

조회 수: 1 (최근 30일)
I want that inside the boundary of the humanoid it should be white, ie all the black holes inside white boundary should be filled in white be it small or big. Please if any one can help me and teach me how to do this kind of filling automatically through a script that works for all other images of this kind. If in case complete hole filling in the below image is not possible, then please tell me how can I fill holes in the next smaller image which is just the cropped (1/4)th of the bigger image.

채택된 답변

Steven Beumer
Steven Beumer 2018년 9월 12일
You might want to have a look at binary morphological operators like opening and closing: https://www.cs.auckland.ac.nz/courses/compsci773s1c/lectures/ImageProcessing-html/topic4.htm https://nl.mathworks.com/help/images/ref/imclose.html
they should do the trick for this kind of problems

추가 답변 (1개)

Image Analyst
Image Analyst 2018년 9월 12일
There is a function made specifically for this operation. Simply call imfill():
filledImage = imfill(binaryImage, 'holes');

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by