How can I select the best set of parameters in the Canny edge detection algorithm implemented in OpenCV?

35,780

Solution 1

You could calculate your thresholds using Otsu’s method.

The (Python) code would look like this:

high_thresh, thresh_im = cv2.threshold(im, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)
lowThresh = 0.5*high_thresh

Solution 2

Use the following snippet which I obtained from this blog:

v = np.median(gray_image)

#---- Apply automatic Canny edge detection using the computed median----
lower = int(max(0, (1.0 - sigma) * v))
upper = int(min(255, (1.0 + sigma) * v))
edged = cv2.Canny(gray_image, lower, upper)
cv2.imshow('Edges',edged)

So what am I doing here?

I am taking the median value of the gray scale image. The sigma value of 0.33 is chosen to set the lower and upper threshold. 0.33 value is generally used by statisticians for data science. So it is considered here as well.

Share:
35,780
Ankur Gautam
Author by

Ankur Gautam

Updated on July 12, 2022

Comments

  • Ankur Gautam
    Ankur Gautam almost 2 years

    I am working with OpenCV on the Android platform. With the tremendous help from this community and techies, I am able to successfully detect a sheet out of the image.

    These are the step I used.

    1. Imgproc.cvtColor()
    2. Imgproc.Canny()
    3. Imgproc.GausianBlur()
    4. Imgproc.findContours()
    5. Imgproc.approxPolyDP()
    6. findLargestRectangle()
    7. Find the vertices of the rectangle
    8. Find the vertices of the rectangle top-left anticlockwise order using center of mass approach
    9. Find the height and width of the rectangle just to maintain the aspect ratio and do warpPerspective transformation.

    After applying all these steps I can easily get the document or the largest rectangle from an image. But it highly depends on the difference in the intensities of the background and the document sheet. As the Canny edge detector works on the principle of intensity gradient, a difference in intensity is always assumed from the implementation side. That is why Canny took into the account the various threshold parameters.

    1. Lower threshold
    2. Higher threshold

    So if the intensity gradient of a pixel is greater than the higher threshold, it will be added as an edge pixel in the output image. A pixel will be rejected completely if its intensity gradient value is lower than the lower threshold. And if a pixel has an intensity between the lower and higher threshold, it will only be added as an edge pixel if it is connected to any other pixel having the value larger than the higher threshold.

    My main purpose is to use Canny edge detection for the document scanning. So how can I compute these thresholds dynamically so that it can work with the both cases of dark and light background?

    I tried a lot by manually adjusting the parameters, but I couldn't find any relationship associated with the scenarios.