How to count the number of voxels of another color

1 visualización (últimos 30 días)
Matthew Lee
Matthew Lee el 11 de Sept. de 2019
Comentada: Rik el 12 de Sept. de 2019
Hi,
I was wondering how to count the number of voxels of one color in a three dimensional space
Thank you!
  3 comentarios
Matthew Lee
Matthew Lee el 12 de Sept. de 2019
I was segmenting a section out of a three dimensional shape, but I wanted to find volume of the segmented portion, so I thought that I could approach it by highlighting the segmentation using a different color and counting the number of voxels of that certain color and then arrange a conversion into cm^3 to find a measure of volume. Is there a way to do this, or is there a better way of going about this volume calculation?
Rik
Rik el 12 de Sept. de 2019
You can use my answer to achieve this. When you have a logical array you can use sum to count the number of voxels.

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 11 de Sept. de 2019
Similar to how you would do that for 2D:
IM=randi(255,[512 512 400]);
count=sum(IM==200,'all');
%if your release doesn't have the 'all' option:
%count=sum(IM(:)==200);

Más respuestas (0)

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by