How to count the number of voxels of another color

1 vue (au cours des 30 derniers jours)
Matthew Lee
Matthew Lee le 11 Sep 2019
Commenté : Rik le 12 Sep 2019
Hi,
I was wondering how to count the number of voxels of one color in a three dimensional space
Thank you!
  3 commentaires
Matthew Lee
Matthew Lee le 12 Sep 2019
I was segmenting a section out of a three dimensional shape, but I wanted to find volume of the segmented portion, so I thought that I could approach it by highlighting the segmentation using a different color and counting the number of voxels of that certain color and then arrange a conversion into cm^3 to find a measure of volume. Is there a way to do this, or is there a better way of going about this volume calculation?
Rik
Rik le 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.

Connectez-vous pour commenter.

Réponse acceptée

Rik
Rik le 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);

Plus de réponses (0)

Catégories

En savoir plus sur Read, Write, and Modify Image 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