Borrar filtros
Borrar filtros

How to find pixels number of a 3D dataset

2 visualizaciones (últimos 30 días)
Silvia Caruso
Silvia Caruso el 3 de Jun. de 2015
Respondida: Image Analyst el 3 de Jun. de 2015
I have a 3D dataset D=260*320*100 of 100 slice. After segmentation I need to Know the total volume (found as total number of pixel) of the 3D dataset. I tried with this code, but I'm not able to find the total volume:
CCvol = bwconncomp(D(:,:,:), 8);
STATS = regionprops(CCvol, 'Area');
Volume=sum(STATS.Area)

Respuesta aceptada

Image Analyst
Image Analyst el 3 de Jun. de 2015
Assuming D is your binary image, and you want the volume of the true/white/1 voxels, you'd simply do this:
Volume = sum(D(:)); % Compute sum of all "true" voxels.

Más respuestas (0)

Categorías

Más información sobre 3-D Volumetric Image Processing 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