Canny

Description

Finds edges in an image using the [Canny86] algorithm.

Signature

cv2.Canny(image, threshold1, threshold2[, edges[, apertureSize[, L2gradient]]]) → edges

Parameters

Explanation

The function finds edges in the input image and marks them in the output map, edges, using the Canny algorithm. The smallest value between threshold1 and threshold2 is used for edge linking. The largest value is used to find initial segments of strong edges.

Notes


References

Created with OpenCV 4.4.0