display axial slices from 3D MRI images
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
MMSAAH
am 15 Sep. 2017
Kommentiert: Image Analyst
am 15 Sep. 2017
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 Kommentare
Akzeptierte Antwort
Image Analyst
am 15 Sep. 2017
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 Kommentare
Image Analyst
am 15 Sep. 2017
If you want to use montage(), just pass it a cell array of 2-D image filenames. It's not hard, just try it.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 3-D Volumetric Image Processing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!