myfirstgitrepo/heartrate/imageextract.asv

21 lines
344 B
Plaintext

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Image extraction code
%
% Author:LY Pechvattana, MINH Meng Hour
% Date: 19/02/2023
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function v = imgex[]
video
v = VideoReader('code.avi');
n = 1;
while hasFrame(v)
img = readFrame(v);
imwrite(img,strcat('image',num2str(n),'.png'));
n = n+1
end
n=n-1;