How to count the number of voxels of another color

1 visualizzazione (ultimi 30 giorni)
Hi,
I was wondering how to count the number of voxels of one color in a three dimensional space
Thank you!
  3 Commenti
Matthew Lee
Matthew Lee il 12 Set 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 il 12 Set 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.

Accedi per commentare.

Risposta accettata

Rik
Rik il 11 Set 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);

Più risposte (0)

Categorie

Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by