How to count the number of voxels of another color

1 回表示 (過去 30 日間)
Matthew Lee
Matthew Lee 2019 年 9 月 11 日
コメント済み: Rik 2019 年 9 月 12 日
Hi,
I was wondering how to count the number of voxels of one color in a three dimensional space
Thank you!
  3 件のコメント
Matthew Lee
Matthew Lee 2019 年 9 月 12 日
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 2019 年 9 月 12 日
You can use my answer to achieve this. When you have a logical array you can use sum to count the number of voxels.

サインインしてコメントする。

採用された回答

Rik
Rik 2019 年 9 月 11 日
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 件)

カテゴリ

Help Center および File ExchangeRead, Write, and Modify Image についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by