Move the sources to trunk
[opencv] / interfaces / matlab / toolbox / opencv / cvpyrup.m
1 function varargout = cvpyrup(varargin)\r
2 %CVPYRUP         Upscale the image.\r
3 %   IMAGE dst = cvpyrup(IMAGE src);\r
4 %\r
5 if nargin ~= 1\r
6     error 'Invalid number of parameters';\r
7     return;\r
8 end\r
9 \r
10 if nargout > 0\r
11     [varargout{1:nargout}] = feval('cvwrap', 'PyrUp', varargin{1}, 7);\r
12 else\r
13     feval('cvwrap', 'PyrUp', varargin{1}, 7);\r
14 end\r
15 return;\r