how to cluster binary matrix in matlab ?
Afficher commentaires plus anciens
let
A=[1 0 0 0 0 0 0 1; 1 1 1 1 1 1 0 1; 0 0 0 0 0 0 1 1; 1 1 1 1 1 1 0 1; 0 0 0 0 0 0 1 1]
how to cluster this matrix A?
Réponses (1)
Walter Roberson
le 30 Mai 2016
1 vote
Under at least two reasonable definitions of "cluster", all of the values that are 1 are in one cluster and all of the values that are 0 are in another cluster. The most obvious "reasonable definition" there involves value, but it also happens that if you use 8-connectivity then every 1 value is "connected" to every other 1 value through a chain.
My speculation is that what you want is bwlabel() with 4 connectivity.
5 commentaires
Image Analyst
le 30 Mai 2016
That's my guess too.
[labeledImage, numberOfRegions] = bwlabel(A);
kumud alok
le 31 Mai 2016
Walter Roberson
le 31 Mai 2016
[clusters, ~, clusteridx] = unique(A,'rows');
kumud alok
le 1 Juin 2016
kumud alok
le 1 Juin 2016
Catégories
En savoir plus sur Matrix Indexing 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!