MATLAB: 3D volume visualization through 2D slices of Tomography

tomography

I have some 2D images – reconstruction or transaxial slices of tomography – that I want to "put together" so I can build a 3D volume.
Does anyone know how to?

Best Answer

You could use the CAT command, e.g.,
slice1=rand(10);
slice2=rand(10);
volume=cat(3,slice1,slice2);
Related Question