📄 getframe.m
字号:
function frame = getframe(vr)
%FRAME=GETFRAME(VR)
% Returns the current frame that has been read in from video VR. Calling
% GETFRAME does not automatically advance the current frame so the user
% must first call NEXT, STEP, or SEEK before calling GETFRAME the
% first time. This makes it easy to write loops such as the example...
%
% Example:
% vr = videoReader(...);
% while (next(vr))
% img = getframe(vr);
% % ...do something...
% end
% vr = close(vr);
%
%SEE ALSO
% videoReader
% videoReader/getinfo
% videoReader/getnext
% videoReader/next
% videoReader/seek
% videoReader/step
%
%Copyright (c) 2006 Gerald Dalley
%See "MIT.txt" in the installation directory for licensing details (especially
%when using this library on GNU/Linux).
frame = feval(vr.plugin, 'getframe', vr.handle);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -