Python | cv2 threshold() Method

In this tutorial, we will see how to separate an object from the background in the image using python open-cv, which exists as cv2 (computer vision) library.

You can use threshold() method of cv2 library to separate an object from the background in the image. To use cv2 library, you need to import cv2 library using import statement.

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

Syntax

Parameters

You need to pass four parameters to cv2 threshold() method.

  1. src:Input Grayscale Image array.
  2. thresholdValue: Mention that value which is used to classify the pixel values.
  3. maxVal: The value to be given if pixel value is more than (sometimes less than) the threshold value.
  4. thresholdingTechnique: The type of thresholding to be applied.
  5. There are 5 different simple thresholding techniques are :

    1. cv2.THRESH_BINARY: If pixel intensity is greater than the set threshold, value set to 255, else set to 0 (black).
    2. cv2.THRESH_BINARY_INV: Inverted or Opposite case of cv2.THRESH_BINARY.<li.
    3. cv2.THRESH_TRUNC: If pixel intensity value is greater than threshold, it is truncated to the threshold. The pixel values are set to be the same as the threshold. All other values remain the same.
    4. cv2.THRESH_TOZERO: Pixel intensity is set to 0, for all the pixels intensity, less than the threshold value.
    5. cv2.THRESH_TOZERO_INV: Inverted or Opposite case of cv2.THRESH_TOZERO.

Return Value

This method return a tuple of 2 values in which 1st value is given threshold value and 2nd value is modified image array.

cv2 threshold() Method examples

Now Let’s see the Python code :

Example 1: Using cv2.THRESH_BINARY thresholding technique.

Output:

Output1

Example 2 : Using cv2.THRESH_BINARY_INV thresholding technique.

Output:

output2

Similarly, you can apply other given thresholding techniques and see their results.

That’s all about cv2 threshold() Method.

Was this post helpful?

Leave a Reply

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