[pixkit image] edgedetection: Edge detection process - yunfuliu/pixkit GitHub Wiki

Sobel

Detect edges with Sobel operator.

C++: bool Sobel(const cv::Mat &src, cv::Mat &dst)

Parameters:

  • src - The source image.
  • dst - The destination image.

Example:

Sobel(src,dst);