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

조회 수: 2 (최근 30일)
I want to perform time-lapse image acquisition, saving each acquired frame as a separate image.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2021년 3월 5일
편집: MathWorks Support Team 2021년 2월 25일
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

추가 답변 (0개)

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by