From d099eb7ec48f596648e5c714c999cb9a7c8effd5 Mon Sep 17 00:00:00 2001 From: Michael Platings Date: Tue, 14 May 2024 11:49:58 +0100 Subject: [PATCH] Remove documentation for experimental feature --- doc/functionality.md | 1 - doc/opencv.md | 8 -------- 2 files changed, 9 deletions(-) diff --git a/doc/functionality.md b/doc/functionality.md index 00186769d..d0c060074 100644 --- a/doc/functionality.md +++ b/doc/functionality.md @@ -61,7 +61,6 @@ See `doc/opencv.md` for details of the functionality available in OpenCV. | Erode | x | | Dilate | x | | Sobel | x | -| Canny (experimental) | x | | Gaussian Blur | x | ## Resize with linear interpolation diff --git a/doc/opencv.md b/doc/opencv.md index 11013fd53..662f9077d 100644 --- a/doc/opencv.md +++ b/doc/opencv.md @@ -145,14 +145,6 @@ Notes on parameters: * margins are not supported. * `dx`,`dy` - either vertical `{dx,dy} == {0,1}` or horizontal `{dx,dy == 1,0` operation is supported. -### `canny` (Experimental) -Apply Canny edge detection filter to a given image. - -Notes on parameters: -* `ksize` - only kernel 3x3 is supported. -* `L2gradient` - only default L1 norm is supported (`false`). -* `cn` - channel count, only one channel is supported (`1`). - ### `transpose` Transposes a matrix. -- GitLab