Borrar filtros
Borrar filtros

Get coordinates from struct created with bwconncomp

1 visualización (últimos 30 días)
Stefan Lang
Stefan Lang el 28 de Abr. de 2021
Comentada: Matt J el 28 de Abr. de 2021
Hello guys
I have a binary image as a prediction from a neural network. This image has several regions (vertebras of the spine). When i run bwconncomp(binary_image), i get as a result a struct with 17-19 Objects (vertebras). Now i need to find the coordinates of the regions. [y x] = find(binary_image) just gives me all coordinates, but i need this separated for each region, so 17-19 coordinate arrays. How do i get this?

Respuesta aceptada

Matt J
Matt J el 28 de Abr. de 2021
Editada: Matt J el 28 de Abr. de 2021
Use regionprops instead,
stats=regionprops(BW,'PixelList')
  6 comentarios
Stefan Lang
Stefan Lang el 28 de Abr. de 2021
Ooh, i used the array and did not convert it into a logical. Now that worked. Thank you!
Matt J
Matt J el 28 de Abr. de 2021
You should have had the same problem with bwconncomp.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by