Filter löschen
Filter löschen

How to get connected component from adjacency matrix

25 Ansichten (letzte 30 Tage)
lingfeng zhou
lingfeng zhou am 13 Aug. 2016
Kommentiert: ali ganjbakhsh am 9 Dez. 2020
The adjacency matrix is already known.
what I want to do is showed in the picture below.
I don't care about the order of the vertex.

Akzeptierte Antwort

Guillaume
Guillaume am 14 Aug. 2016
A lot of graph functions have been added in R2015b. In particular, you have conncomp which gives you exactly what you want:
adjacencyMatrix =[0 1 1 0 1 0 1 0 1 0
1 0 1 0 1 0 1 0 1 0
1 1 0 0 1 0 1 0 1 0
0 0 0 0 0 0 0 1 0 0
1 1 1 0 0 0 1 0 1 0
0 0 0 0 0 0 0 0 0 1
1 1 1 0 1 0 0 0 1 0
0 0 0 1 0 0 0 0 0 1
1 1 1 0 1 0 1 0 0 0
0 0 0 0 0 1 0 1 0 0]
G = graph(adjacencyMatrix);
plot(G); %view the graph
bins = conncomp(G);
binnodes = accumarray(bins', 1:numel(bins), [], @(v) {sort(v')});
fprintf('number of Regions = %d\n\n', numel(binnodes));
for binidx = 1:numel(binnodes)
fprintf('All these nodes are connected:%s\n', sprintf(' %d', binnodes{binidx}));
end
fprintf('\n');
  2 Kommentare
lingfeng zhou
lingfeng zhou am 14 Aug. 2016
It's great and that's exactly what I want. I have never contact with this function before.Thank you so much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 13 Aug. 2016
Bearbeitet: Image Analyst am 13 Aug. 2016
Use bwlabel() and regionprops:
[labeledMatrix, numberOfRegions] = bwlabel(A);
props = regionprops(labeledMatrix, 'PixelList');
labeledMatrix gives an ID number to each connected region. props has all the information on all the elements in each connected region. You can get indexes (rows and columns), values, areas, etc. depending on what you ask regionprops() for.
  7 Kommentare
lingfeng zhou
lingfeng zhou am 14 Aug. 2016
Thank you anyway!
Image Analyst
Image Analyst am 14 Aug. 2016
Unaccept my Answer and see if Guillaume's gives you the answer and if it does, accept his answer to give him credit.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by