Effacer les filtres
Effacer les filtres

matlab code for fill hole algorithem!!! dose any one have it

2 vues (au cours des 30 derniers jours)
mangood UK
mangood UK le 26 Avr 2013
hi
i have been use function ""fill hole"" for binary image
dose any one have matlab code for it!!!???
best regards

Réponses (2)

Walter Roberson
Walter Roberson le 26 Avr 2013
There are multiple algorithms. For example, look up "flood fill"

Image Analyst
Image Analyst le 26 Avr 2013
For what? For how to use the imfill() function in the Image Processing Toolbox? Or for the source code that it uses?
To use it, you simply do
binaryImage = imfill(binaryImage, 'holes');
If you want to know at a low level what it does, you usually can't get that info since most toolbox m-files are just wrappers that pretty quickly jump into a DLL for which they don't supply source code. You can get similar code by searching on the internet.
If you want how they fill holes in a grayscale image, then Steve gives his source (a book) on this page: http://blogs.mathworks.com/steve/2007/07/26/filling-holes-in-images/

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by