我想在Matlab中创建一个彩色图像数组,以便我可以这样做thearray(我)然后得到一个彩色图像。除了制作一个3D数组之外,还有别的方法吗?
单元格数组:
images = cell(100,1);
% ... f.e. in a for loop:
images{i} = rand(100,200);
% to query the image (2D array) again:
myImage = images{n};