display axial slices from 3D MRI images
4 次查看(过去 30 天)
显示 更早的评论
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 ?
0 个评论
采纳的回答
Image Analyst
2017-9-15
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().
2 个评论
Image Analyst
2017-9-15
If you want to use montage(), just pass it a cell array of 2-D image filenames. It's not hard, just try it.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File 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!