When working with an image and filling in gaps, do you only choose one: imerode, imdilate, imopen, imclsoe and imfill
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Samantha Florimo
il 2 Dic 2014
Risposto: Image Analyst
il 2 Dic 2014
Individually I understand the function of all of the commands. However, when asked to fill in the gaps of an image, do you only use one of them or use them all?
0 Commenti
Risposta accettata
Image Analyst
il 2 Dic 2014
Assuming your foreground blobs are white/true/1, imerode and imopen will enlarge the black areas and eat away at the white areas. imdilate and imclose will enlarge/smooth the white areas and fill in black areas near borders/perimeters. imfill() fills in black islands in a white blob. Usually you use only one: imfill. However if you want your blobs to have a bit smoother outline, then you can use imclose() before imfill().
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!