MATLAB: Display axial slices from 3D MRI images

Image Processing Toolboxmri 3d

Hello every body, I have 3D MR images in .img format .I want to display all the axial slices in one figure. Could any one help me ?

Best Answer

Loop over slices stitching them together. Here's a start
tallImage = [image1; image2];
wideImage = [image1, image2];
Otherwise you could write each image to a separate image file and then call montage().