Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 1 (최근 30일)
Priyank Goel
Priyank Goel 2021년 7월 12일
마감: Walter Roberson 2021년 7월 12일
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