OpCannyEdgeDetector.h#
Fully qualified name: public/src/operator/include/OpCannyEdgeDetector.h
In directory: public/src/operator/include
Source file: OpCannyEdgeDetector.h
Defines types and functions to handle the Canny edge detection operation excluding edge hysteresis.
This operator includes the following steps:
Compute the gradient intensity and orientation of the image using the Sobel filter.
Non-maximum suppression to thin the edges.
Double thresholding to detect strong and weak edges. A post-processing of edge linking to connect weak edges to form complete edges is still needed. Note that pre-processing to remove noise in the image is not included in this operator.