Effacer les filtres
Effacer les filtres

How to find pixels number of a 3D dataset

2 vues (au cours des 30 derniers jours)
Silvia Caruso
Silvia Caruso le 3 Juin 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)

Réponse acceptée

Image Analyst
Image Analyst le 3 Juin 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.

Plus de réponses (0)

Catégories

En savoir plus sur 3-D Volumetric Image Processing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by