Update to 2.0.0 tree from current Fremantle build
[opencv] / interfaces / matlab / toolbox / opencv / cvmatchtemplate.m
diff --git a/interfaces/matlab/toolbox/opencv/cvmatchtemplate.m b/interfaces/matlab/toolbox/opencv/cvmatchtemplate.m
deleted file mode 100644 (file)
index d4943c1..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-function varargout = cvmatchtemplate(varargin)\r
-%CVMATCHTEMPLATE      Match template against every location within the image.\r
-%   IMAGE dst = cvmatchtemplate(IMAGE src, IMAGE template, method );\r
-%   method:\r
-%     0 - squared difference\r
-%     1 - normalized squared difference\r
-%     2 - cross correlation\r
-%     3 - normalized cross correlation\r
-%     4 - correlation coefficient\r
-%     5 - normalized correlation coefficient\r
-%\r
-if nargin ~= 3\r
-    error 'Invalid number of parameters';\r
-    return;\r
-end\r
-\r
-if nargout > 0\r
-    [varargout{1:nargout}] = feval('cvwrap', 'MatchTemplate', varargin{:});\r
-else\r
-    feval('cvwrap', 'MatchTemplate', varargin{:});\r
-end\r
-return;\r