color map based on area

조회 수: 1 (최근 30일)
Yazan
Yazan 2018년 7월 25일
답변: Walter Roberson 2018년 7월 25일
A 3D volume is constructed from a stack of 2D masks (slices). How to color each slice based on the area of the object inside. Suppose the volume is a trunk.
  댓글 수: 2
Walter Roberson
Walter Roberson 2018년 7월 25일
Do you want all the pixels selected by the mask of a slice to be the same color? Or do you want to shade by value, different brightness of the color according to pixel value?
Yazan
Yazan 2018년 7월 25일
I have the volume as 3D matrix (n by n by 500) and the area as a separate 1 by 500 vector.

댓글을 달려면 로그인하십시오.

답변 (2개)

Yazan
Yazan 2018년 7월 25일
Thanks Walter for your comment. All pixels should have the same color based on the area of the mask at that slice. The maximum area is 12 unit square and the minimum is 4 unit square and the volume (or isosurface) was constructed from 500 slices.

Walter Roberson
Walter Roberson 2018년 7월 25일
colorval = repmat( sum( sum( masks3d, 1), 2) ), size(masks3d, 1), size(masks3d, 2), 1 ) .* masks3d;
vol3d('CData', colorval', 'alpha', double(masks3d))

카테고리

Help CenterFile 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!

Translated by