Watershed oversegmentation on image with multiple touching blobs.
Afficher commentaires plus anciens
The MATLAB watershed algorithm I am applying on my image oversegments the blobs. I have tried multiple alternate approaches on this page ( https://www.mathworks.com/company/newsletters/articles/the-watershed-transform-strategies-for-image-segmentation.html ) without success. Here is a link to the Imgur Album containing the Black/White image and post-watershed image - http://imgur.com/a/Kw5CU
Code:
% BW contains the black/white image
D = -bwdist(~BW);
D(~BW) = -Inf;
L = watershed(D);
imshow(label2rgb(L, 'jet', 'w'));
Réponses (1)
Daniel Cohen
le 7 Mar 2017
Modifié(e) : Daniel Cohen
le 7 Mar 2017
1 vote
Catégories
En savoir plus sur Image Processing Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!