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!