convert 3d image to 2d images
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
khaled alsaih
am 17 Dez. 2017
Kommentiert: Image Analyst
am 30 Okt. 2018
i have image with size of 1024*512*128 where 128 is the number of slices in the volume how can i get the 2d images and save it into .png and how to get them back thanks for your kind help
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 17 Dez. 2017
Try something like this
[rows, columns, numberOfSlices] = size(image3d);
for slice = 1 : numberOfSlices
thisSlice = image3d(:,:, slice);
baseFileName = sprintf('Slice %d.png', slice);
fullFileName = fullfile(folder, baseFileName);
imwrite(thisSlice, fullFileName);
end
To get them back, use imread(). To tack onto a 3D image, use cat(3, image3d, thisSlice).
4 Kommentare
Image Analyst
am 30 Okt. 2018
permute() does not do that. It basically just rotates the 3D volume so that rows are now columns, etc.
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!