How to count the number of voxels of another color
    5 views (last 30 days)
  
       Show older comments
    
Hi,
I was wondering how to count the number of voxels of one color in a three dimensional space
Thank you!
3 Comments
  Rik
      
      
 on 12 Sep 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.
Accepted Answer
  Rik
      
      
 on 11 Sep 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);
0 Comments
More Answers (0)
See Also
Categories
				Find more on Image Processing Toolbox in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

