creating .mat file
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Wayne King
el 7 de Oct. de 2011
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
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!