Find continuous elements in matrix

8 visualizaciones (últimos 30 días)
Fabio
Fabio el 18 de Jun. de 2012
Hi everyone,
my problem is the following: i've one matrix made of two possible values (i.e. 1 and 0). I also have the coordinates of one "starting point". I would like to select all the ones that are connected to this point without selecting the ones that are separeted by zeros. I can't figure out a way to solve the problem... can you help me?
Thanks in advance, Fabio
  1 comentario
Walter Roberson
Walter Roberson el 18 de Jun. de 2012
Do you have the Image Processing Toolbox?

Iniciar sesión para comentar.

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 18 de Jun. de 2012
use functions bwlabel and regionprops from Image Processing Toolbox
eg
youridx = {10,6}; % coordinates of one "starting point" (row - 10, column - 6)
a = [...
0 0 0 0 0 0 0 0 0 0
0 1 0 0 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0 1
0 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 1 0 0 1 0
0 0 1 0 1 0 0 1 0 0
0 1 0 0 0 0 0 0 1 0
0 0 1 0 0 0 0 1 0 0
0 0 0 0 1 1 1 0 0 0];
S = regionprops(a~=0,'PixelList');
t = bwlabel(a);
out = = fliplr(S(t(idx{:})).PixelList);
  2 comentarios
Fabio
Fabio el 19 de Jun. de 2012
Thank you very much, this is working very well! I didn't mention in my introduction that the matrix i'm looking at is a 3d matrix (or it could be in future applications a n-dimension matrix, with n>3), but hopefully i'll find a way to extend this code to the 3rd dimension. If you have any other suggestion please tell me.
Sean de Wolski
Sean de Wolski el 19 de Jun. de 2012
should be extendable as is.

Iniciar sesión para comentar.

Más respuestas (1)

Sean de Wolski
Sean de Wolski el 18 de Jun. de 2012
CC = bwconncomp(a);
CC.PixelIdxList{:}

Categorías

Más información sobre Spline Postprocessing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by