X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=interfaces%2Fmatlab%2Ftoolbox%2Fopencv%2Fcvmatchtemplate.m;fp=interfaces%2Fmatlab%2Ftoolbox%2Fopencv%2Fcvmatchtemplate.m;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=d4943c1cc9b49954e5913de9a5b84a74122f3680;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/interfaces/matlab/toolbox/opencv/cvmatchtemplate.m b/interfaces/matlab/toolbox/opencv/cvmatchtemplate.m deleted file mode 100644 index d4943c1..0000000 --- a/interfaces/matlab/toolbox/opencv/cvmatchtemplate.m +++ /dev/null @@ -1,22 +0,0 @@ -function varargout = cvmatchtemplate(varargin) -%CVMATCHTEMPLATE Match template against every location within the image. -% IMAGE dst = cvmatchtemplate(IMAGE src, IMAGE template, method ); -% method: -% 0 - squared difference -% 1 - normalized squared difference -% 2 - cross correlation -% 3 - normalized cross correlation -% 4 - correlation coefficient -% 5 - normalized correlation coefficient -% -if nargin ~= 3 - error 'Invalid number of parameters'; - return; -end - -if nargout > 0 - [varargout{1:nargout}] = feval('cvwrap', 'MatchTemplate', varargin{:}); -else - feval('cvwrap', 'MatchTemplate', varargin{:}); -end -return;