Save .tif stack to .tif image sequence.

조회 수: 12 (최근 30일)
Alok Kumar Dubey
Alok Kumar Dubey 2019년 4월 1일
댓글: Anushka Kapoor 2020년 10월 8일
I have stack of 1000 frames in the form of .tif (stack) eg 'EGFRwt_a4900_p65_e50ms_01.tif' (512x512x1000). I need to save them as image sequence (i.e. 1 frame per file) eg 'EGFRwt_a4900_p65_e50ms_01_0001.tif', 'EGFRwt_a4900_p65_e50ms_01_0002.tif', 'EGFRwt_a4900_p65_e50ms_01_0003.tif'......, 'EGFRwt_a4900_p65_e50ms_01_1000.tif'.
Please help me
Thanks in advance.

채택된 답변

KSSV
KSSV 2019년 4월 1일
Let I be your stack of size (512x512x1000).
for i = 1:1000
filename = ['EGFRwt_a4900_p65_e50ms_01_',sprintf('%04d',i),'.tif']
imwrite(I(:,:,i),filename) ;
end
  댓글 수: 2
Alok Kumar Dubey
Alok Kumar Dubey 2019년 4월 1일
Thanks KSSV,
It worked very well.
Anushka Kapoor
Anushka Kapoor 2020년 10월 8일
Do the files need to be in the directory for this code? And when you say "Let I be for stack", is there a specific input for I as it is undefined?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by