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!