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

5 visualizaciones (últimos 30 días)
I want to perform time-lapse image acquisition, saving each acquired frame as a separate image.

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 5 de Mzo. de 2021
Editada: MathWorks Support Team el 25 de Feb. de 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

Más respuestas (0)

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by