我有这个代码(将图像读入一个巨大的矩阵)
allImages = [];
for ii = 1 : n
img = imread( fileNames{ii} );
img = imresize( rgb2gray(img), [100 100] );
allImages = cat(3, allImages, img ); % append image to huge matrix
end
Matlab 将我指向循环中的最后一行,警告我在allIamges
循环内增长。
那么这里有什么大不了的呢?