How can I find the connected components of an image and then label them?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Prachi Sharma
el 6 de Oct. de 2016
Comentada: Massimo Zanetti
el 6 de Oct. de 2016
So I have this image attached here and bw is of type 512*512 logical.I need to find the connected components of this image and then label them.I have read about 'bwconncomp' but I am unable to get connected components from it.How can I move further?
0 comentarios
Respuesta aceptada
Massimo Zanetti
el 6 de Oct. de 2016
There are matlab functions:
%compute conn components
CC = bwconncomp(BW);
%label them
L = labelmatrix(CC);
6 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!