How can I count the number of voxels in a region
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gina Carts
am 2 Mär. 2020
Kommentiert: Gina Carts
am 3 Mär. 2020
Hi,
I have a 3D mask with 0 background (NIfTI format). The mask has some regions marked with number 1,other egions with number 2, others with number 3 and others with number 4.
I was wondering how to count the number of voxels involved in each region. If I have 20 regions in my mask: let's say 10 regions have number 1, 5 regions have number 2, 4 regions have number 3 and 1 region have number 4.
I want to know how many voxels correspond to each of my 10 regions with number 1. I want the individual number of voxels in each region not the overall number.
Any help is highly appreciated.
5 Kommentare
Alex Mcaulley
am 2 Mär. 2020
Hve you read the documentation of bwconncomp? There are some examples to see what this function does.
numVoxels is an array with the number of voxels for each region found
Akzeptierte Antwort
Image Analyst
am 2 Mär. 2020
Gina, to find the blob count and volume for all the regions for a particular label number, you can do (untested)
% Get a mask of only this number and label each blobs that has this number.
[thisLabeledImage, numBlobs] = bwlabeln(mask3d == desiredNumber);
% numBlobs is the number of distinct, separate blobs with this label.
% Now find the volume of all those blobs.
props = regionprops3(thisLabeledImage, 'Volume');
allVolumes = [props.Volume]; % List of volumes for all blobs with this particular number only.
Repeat for whatever desiredNumber you want to check. For example
desiredNumber = 4;
Or you can put into a loop over all the numbers you know exist.
mask3d is the "mask" array you mentioned with the labeled regions.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 3-D Volumetric Image Processing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!