Please help me with this .tif to .mat file conversion

조회 수: 9 (최근 30일)
Yogesh Awate
Yogesh Awate 2017년 11월 28일
댓글: Yogesh Awate 2017년 11월 28일
pic1 = imread('IMG_1.tif');
pic2 = imread('IMG_2.tif');
pic3 = imread('IMG_3.tif');
pic4 = imread('IMG_4.tif');
pic5 = imread('IMG_5.tif');
save('MultiUAV1.mat', 'pic1', 'pic2', 'pic3', 'pic4', 'pic5');
I am trying to convert these .tif images(960 x 1280 uint16) into a single .mat file(960 x 1280 x 5 uint16), instead it is creating separate files(960 x 1280 unit6) into mutliple.
Please help me getting single .mat file(960 x 1280 x 5 uint16)
Thank you in advance!

채택된 답변

KSSV
KSSV 2017년 11월 28일
편집: KSSV 2017년 11월 28일
images = {'IMG_1.tif','IMG_2.tif','IMG_3.tif','IMG_4.tif','IMG_5.tif'} ;
N = length(images) ;
I = zeros(960,1280,N) ;
for i = 1:N
I1 = imread(images{i}) ;
I(:,:,i) = I1 ;
end
save MultiUAV1.mat I ;
  댓글 수: 3
KSSV
KSSV 2017년 11월 28일
Edited...
Yogesh Awate
Yogesh Awate 2017년 11월 28일
Thanks a lot for help!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by