OpenCV  4.9.0-dev
Open Source Computer Vision
Loading...
Searching...
No Matches
Laplace Operator

Prev Tutorial: Sobel Derivatives
Next Tutorial: Canny Edge Detector

Original author Ana Huamán
Compatibility OpenCV >= 3.0

Goal

In this tutorial you will learn how to:

  • Use the OpenCV function Laplacian() to implement a discrete analog of the Laplacian operator.

Theory

  1. In the previous tutorial we learned how to use the Sobel Operator. It was based on the fact that in the edge area, the pixel intensity shows a "jump" or a high variation of intensity. Getting the first derivative of the intensity, we observed that an edge is characterized by a maximum, as it can be seen in the figure:
  1. And...what happens if we take the second derivative?

You can observe that the second derivative is zero! So, we can also use this criterion to attempt to detect edges in an image. However, note that zeros will not only appear in edges (they can actually appear in other meaningless locations); this can be solved by applying filtering where needed.

Laplacian Operator

  1. From the explanation above, we deduce that the second derivative can be used to detect edges. Since images are "*2D*", we would need to take the derivative in both dimensions. Here, the Laplacian operator comes handy.
  2. The Laplacian operator is defined by:

    \[Laplace(f) = \dfrac{\partial^{2} f}{\partial x^{2}} + \dfrac{\partial^{2} f}{\partial y^{2}}\]

  3. The Laplacian operator is implemented in OpenCV by the function Laplacian() . In fact, since the Laplacian uses the gradient of images, it calls internally the Sobel operator to perform its computation.

Code

  1. What does this program do?
    • Loads an image
    • Remove noise by applying a Gaussian blur and then convert the original image to grayscale
    • Applies a Laplacian operator to the grayscale image and stores the output image
    • Display the result in a window

Explanation

Declare variables

Load source image

Reduce noise

Grayscale

Laplacian operator

  • The arguments are:
    • src_gray: The input image.
    • dst: Destination (output) image
    • ddepth: Depth of the destination image. Since our input is CV_8U we define ddepth = CV_16S to avoid overflow
    • kernel_size: The kernel size of the Sobel operator to be applied internally. We use 3 in this example.
    • scale, delta and BORDER_DEFAULT: We leave them as default values.

Convert output to a <em>CV_8U</em> image

Display the result

Results

  1. After compiling the code above, we can run it giving as argument the path to an image. For example, using as an input:
  1. We obtain the following result. Notice how the trees and the silhouette of the cow are approximately well defined (except in areas in which the intensity are very similar, i.e. around the cow's head). Also, note that the roof of the house behind the trees (right side) is notoriously marked. This is due to the fact that the contrast is higher in that region.