Array of Matrices.?
이전 댓글 표시
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?
답변 (2개)
the cyclist
2011년 8월 3일
0 개 추천
Regarding your first question: MATLAB supports N-d arrays, so you can store a variable as 576x576x100.
Walter Roberson
2011년 8월 3일
0 개 추천
댓글 수: 1
Walter Roberson
2011년 8월 4일
instead of using double(A), I suggest you use im2double(A)
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!