Hi; Someone please help me, how to do the same code with a set of images with a loop, and save only the first slice of each image?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
for sliceIndex = 1 : size(image3d, 3)
thisSlice = image3d(:,:,sliceIndex);
filename = sprintf('Slice #%d.png', sliceIndex);
imwrite(thisSlice, filename);
end
0 Commenti
Risposte (1)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!