A Fast Image Segmentation using Delaunay Triangulation (Revisited)

This is a tuned version of the old post on Delaunay-based image segmentation.
2,6K téléchargements
Mise à jour 26 juil. 2012

Afficher la licence

This is a tuned version of the old post on Delaunay-based image segmentation.

http://www.mathworks.nl/matlabcentral/fileexchange/28330-a-fast-image-segmentation-using-delaunay-triangulation

Citation pour cette source

Abbas Cheddad (2024). A Fast Image Segmentation using Delaunay Triangulation (Revisited) (https://www.mathworks.com/matlabcentral/fileexchange/37556-a-fast-image-segmentation-using-delaunay-triangulation-revisited), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2012a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.1.0.0

In the DSIterate.m file

Was:

if length(Clusters2)==3 % Setting the min to 5 clusters

Changed to:

if length(Clusters2)<=5 % Setting the minimum number of clusters to 5

====

Changed the screenshot image.

1.0.0.0