How can I use Iamerode to separate attached cells from the mask?

3 visualizzazioni (ultimi 30 giorni)
I have a couple of masks made and some of the cells are attached together, I want to separate those cells using a Matlab function iamerode.
How can I do it?

Risposte (1)

Image Analyst
Image Analyst il 19 Set 2022
Modificato: Image Analyst il 19 Set 2022
Those look like they're all separate, because they're different colors. Why do you say they're not?
I've never heard of iaerode. It's not a MATLAB function. Maybe you got that from some third party or wrote it yourself. However there is an imerode function.
se = strel('disk', 3, 0);
mask = imerode(mask, se);
In the meantime, see Steve's discussion of using watershed to split apart joined binary blobs:

Categorie

Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by