how extract 1/8 of volume image to show inner part of structure

1 view (last 30 days)
Dear All,
I reconstruct 3d structure from series of 2d slices , how could I extract portion of this volume image , like 90 degree slice or etc, to be able to see inner structure.

Answers (1)

Sean de Wolski
Sean de Wolski on 27 Feb 2012
doc slice
And perhaps Patrick's answer to my similar question:
To extract a slice along one of the dimensions of the volume, use squeeze along with indexing into the volume:
Vslice = squeeze(V(:,40,:)); %40th slice through the depth

Community Treasure Hunt

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

Start Hunting!