How do I perform time lapse image acquisition and save individual images?

2 views (last 30 days)
I want to perform time-lapse image acquisition, saving each acquired frame as a separate image.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 5 Mar 2021
Edited: MathWorks Support Team on 25 Feb 2021
Follow a modified form of the approach example is this example:
Instead of logging to disk, log data to memory. Use the FramesAcquiredFcn callback to save individual frames as images:
vid = videoinput('winvideo');
%% Do actual time-lapse acquisition
framerate = 17.5296; % Previously calculated according to example
capturetime = 30;
vid.FrameGrabInterval = 10;
vid.FramesPerTrigger = floor(capturetime * framerate / vid.FrameGrabInterval);
vid.FramesAcquiredFcnCount = 1; % Execute callback for each frame
vid.FramesAcquiredFcn = @saveFrame;
start(vid);
wait(vid, Inf);
function saveFrame(vid, event)
image = getdata(vid, 1);
imwrite(image, [num2str(vid.FramesAcquired) '.jpg']);
end

More Answers (0)

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!