CannyEdges
Description
The Canny edge detector is an edge detection operator that uses a multi-stage algorithm to detect a wide range of edges in images. Read more on Wiki.
Params
sobel | Tensor | output of SobelOperator. |
low | number | Low threshold to be applied. |
high | number | High threshold to be applied. |
Example
gm.cannyEdges(inputImage, 0.25, 0.75);