MATLAB: How to reconstruct a DICOM image and then slice it along different axes

2d to 3d volumetric conversionImage Processing Toolbox

Hello
I have a CT Scan consisting of 2D Images, I was wondering if there was a way to reconstruct the 3D volumetric image and slice the image alongxy plane, yz plane and xz plane using the volume image.
Anyone got any ideas?
Thank you

Best Answer

slice() uses interp3() to extract information for the chosen planes. You can do the same thing.
Or you could call slice() and record the output handles, and then retrieve the XData, YData, ZData, CData properties of each of the surface() that are generated.
Related Question