Array of Matrices.?
Mostrar comentarios más antiguos
Hi, I'm a complete novice to MATLAB. I'm reading a few images and want to save their matrix value in an array. Every image is 576x576px and theres about 100 of them.
Also, how do you multiply a uint8 matrix with a double matrix without losing image quality?
Respuestas (2)
the cyclist
el 3 de Ag. de 2011
0 votos
Regarding your first question: MATLAB supports N-d arrays, so you can store a variable as 576x576x100.
1 comentario
Aditya
el 3 de Ag. de 2011
Walter Roberson
el 3 de Ag. de 2011
0 votos
1 comentario
Walter Roberson
el 4 de Ag. de 2011
instead of using double(A), I suggest you use im2double(A)
Categorías
Más información sobre Loops and Conditional Statements 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!