Python | cv2 Canny() Method

In this tutorial, we will see how to detect edges in the image using python open-cv, which exists as cv2 (computer vision) library.

You can use Canny() method of cv2 library to detect edges in an image. To use cv2 library, you need to import cv2 library using import statement.

Canny() method uses canny edge detection algorithm for finding the edges in the image.

For more information: canny edge detection algorithm

Now let’s see the syntax and return value of cv2 canny() method first, then we will move on the examples.

Syntax

Parameters

You can pass five parameters to resize() method. Among the five parameters, the first three(image,threshold ,and threshold2) are mandatory; rest(apertureSize and L2gradient) are optional.

    Necessary parameters are:

  1. image: Source/Input image of n-dimensional array.
  2. threshold1: It is the High threshold value of intensity gradient.
  3. threshold2: It is the Low threshold value of intensity gradient.
  4. Optional parameters are:

  5. apertureSize: Order of Kernel(matrix) for the Sobel filter. Its default value is (3 x 3), and its value should be odd between 3 and 7. It is used for finding image gradients. Filter is used for smoothening and sharpening of an image.
  6. L2gradient: This specifies the equation for finding gradient magnitude. L2gradient is of boolean type, and its default value is False.

Return Value

It returns Grayscale edge detected image.

cv2 Canny() Method example

Now Let’s see the Python code :
Example 1: Using Canny() method with necessary parameters only.

Output:

output1

Example 2: Using Canny() method with apertureSize parameter value along with necessary parameters.

Output :

output11

Example 3: Using Canny() method with L2gradient and apertureSize parameter values along with necessary parameters.

Output:

output12

Example 4: Using Canny() method with L2gradient parameter value along with necessary parameters.

Output:

s13

That’s all about cv2 Canny() Method in Python.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *