Effacer les filtres
Effacer les filtres

distance transform and local maxima

1 vue (au cours des 30 derniers jours)
Nisreen Sulayman
Nisreen Sulayman le 8 Août 2014
Commenté : Image Analyst le 10 Août 2014
I have binary image. I want to find the distance transform then apply the local max to it. any suggestions?

Réponses (2)

Image Analyst
Image Analyst le 8 Août 2014
Modifié(e) : Image Analyst le 8 Août 2014
What does "Apply the local max" to it mean? Do you mean imdilate(), which does the local max in a sliding/local window?
edtImage = bwdist(binaryImage); % Calc Euclidean Distance Transform.
% Now get the local max in a 5x5 window everywhere.
localMaxImage = imdilate(edtImage, true(5)); % Whatever window size you want.
Let me know if you want the local max only if it's at the center of the window, like if you want to find ridgelines or something.

Nisreen Sulayman
Nisreen Sulayman le 8 Août 2014
Modifié(e) : Image Analyst le 8 Août 2014
Could you please have a look at my question:
I want to get the following result from the segmented image:
  7 commentaires
Nisreen Sulayman
Nisreen Sulayman le 10 Août 2014
Ok, second choice is better. Thank you
Image Analyst
Image Analyst le 10 Août 2014
Still didn't work. All I see is a missing image symbol.

Connectez-vous pour commenter.

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