creating .mat file
古いコメントを表示
Sir I have 15 images ,I want to create .mat file so that i can load these images easily,please tell how to create .mat file
採用された回答
その他の回答 (1 件)
Wayne King
2011 年 10 月 7 日
Yes, you can create an image volume. Create a 3-D array and place the images in that array.
X = zeros(256,256,15);
X(:,:,1) = image1;
X(:,:,2) = image2;
and so on
カテゴリ
ヘルプ センター および File Exchange で Image Arithmetic についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!