Update to 2.0.0 tree from current Fremantle build
[opencv] / interfaces / matlab / toolbox / opencv / cvlaplace.m
diff --git a/interfaces/matlab/toolbox/opencv/cvlaplace.m b/interfaces/matlab/toolbox/opencv/cvlaplace.m
deleted file mode 100644 (file)
index 4f67582..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-function varargout = cvlaplace(varargin)\r
-%CVLAPLACE           Calculate Laplacian of the image\r
-%   IMAGE dst = cvLaplace(IMAGE src, apertureSize);\r
-%   src          - source image\r
-%   apertureSize - default 3. size of applied aperture\r
-%\r
-%   dst - destination image\r
-\r
-if nargin < 1 | nargin > 2\r
-    error 'Invalid number of parameters';\r
-    return;\r
-end\r
-\r
-if nargin < 2\r
-    varargin{2} = 3; % default aperture size\r
-end\r
-\r
-out = nargout;\r
-if out < 1\r
-    out = 1;\r
-end\r
-\r
-if out > 1\r
-    error 'Too many output parameters'\r
-    return;\r
-end;\r
-\r
-[varargout{1:out}] = feval('cvwrap', 'Laplace', varargin{:});\r
-\r
-return;
\ No newline at end of file