How can I convert a 3D kxmxn matrix into n images directly?

조회 수: 1 (최근 30일)
Rogier Brand
Rogier Brand 2016년 8월 26일
답변: Azzi Abdelmalek 2016년 8월 26일
I have several 3D matrices (representing spectral maps) with kxm being the 2D dimensions and the spectra along the n direction.
What I need to do for further processing is dividing the matrix into n kxm images and save them as tif. Would anyone know how to attack this problem and preferably avoid for loops?
It is probably an arbitrary problem, but being not a Matlab expert nor being able to find good code for it on the net, I wanted to drop the question here. Many thanks in advance.

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 8월 26일
for k=1:n
Im=M (:,:, k)
imwrite (Im,sprintf ('file% d', k))
end

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by