⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cvupdatemotionhistory.m

📁 guide and some example with visualC++
💻 M
字号:
function varargout = cvupdatemotionhistory(varargin)
%CVUPDATEMOTIONHISTORY Update motion history image
%   IMAGE mhi = cvUpdateMotionHistory(IMAGE silhouette, 
%     timestamp, mhiDuration);
%   silhouette  - silhouette image
%   timestamp   - current system time
%   mhiDuration - maximal duration of motion track before it will be removed
%
%   mhi         - motion history image

if nargin ~= 3
    error 'Invalid number of parameters';
    return;
end

out = nargout;
if out < 1
    out = 1;
end

if out > 1
    error 'Too many output parameters'
    return;
end;

[varargout{1}] = feval('cvwrap', 'UpdateMotionHistory', varargin{:});

return;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -