How can I count the number of voxels in a region
12 次查看(过去 30 天)
显示 更早的评论
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 个评论
Alex Mcaulley
2020-3-2
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
采纳的回答
Image Analyst
2020-3-2
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!