MATLAB 関数に一連の画像を保存する方法を探しています。前もって n 個の画像用のスペースを確保し、後で初期化する方法はありますか?
私はこのようなことをしてみました:
array_of_images = zeros(1,5); % array of 5 images
しかし、初期化しようとすると:
array_of_images(1,1) = imread('image_01.jpg');
MATLAB は を報告Assignment has more non-singleton rhs dimensions than non-singleton subscripts
するので、同等のことを行う方法を探しています。