Info

此问题已关闭。 请重新打开它进行编辑或回答。

Issue with reading images (video frames) from a folder?

1 次查看(过去 30 天)
I am trying to read images from scene_0001.bmp to scene_0062.bmp for Proper orthogonal decomposition. I am getting no output.
% Import the images from folder. The images are extracted from the Schlieren
% video for wedge_4_68 at Mach 2.5.
data = [];
% if strcmp(example,'cylinder')
directory = '4_68_image';
count = 1;
while exist(sprintf('%s/scene_%0.4d.bmp',directory,count)) ~= 0
data(:,:,count) = imread(sprintf('%s/scene_%0.4d.bmp',directory,count));
count = count +1;
end
r = size(data,1); c = size(data,2);
% Transform the data into column vectors.
data=reshape(data,r*c,size(data,3));

回答(0 个)

此问题已关闭。

产品


版本

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by