How can I save all slices from 3D image?

5 visualizaciones (últimos 30 días)
Haytham Ali
Haytham Ali el 12 de En. de 2022
Respondida: KSSV el 12 de En. de 2022
I am using this code but not working good it save only one slice
for i=1:45
slice=Myimage(:,:,i);
saveas(gcf,'slice_i.png')
end

Respuestas (1)

KSSV
KSSV el 12 de En. de 2022
for i=1:45
slice=Myimage(:,:,i);
pcolor(slice) ; shading interp
fname = ['slice_',num2str(i),'.png'] ;
saveas(gcf,fname)
end

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by