How to Perform Different Simple Thresholding of an Image Using Python OpenCV?

How to Perform Different Simple Thresholding of an Image Using Python OpenCV?

Image thresholding is a simple yet effective technique that is used in digital image processing to separate an object or a region from the background. OpenCV, the popular Computer Vision library, provides different thresholding techniques that can be used to convert grayscale images into binary images. This article will show you how to perform different simple thresholding of an image using Python OpenCV.

Prerequisites

Before starting with the project, you need to have Python installed on your computer. You can get it from the official website. Additionally, you need to install OpenCV and Matplotlib libraries. To install these libraries, open your terminal or command prompt and run the following commands.

pip install opencv-python
pip install matplotlib

Once you have installed the required libraries, you are ready to start.

Understanding Thresholding

Thresholding is a form of image segmentation, which is the process of dividing an image into multiple segments or regions. In thresholding, a grayscale image is converted into a binary image by defining a threshold value. Pixel values above this threshold are set to 255 (white), while pixel values below this threshold are set to 0 (black).

Simple Thresholding Techniques

OpenCV provides different thresholding techniques. In this article, we will discuss the following simple thresholding techniques:

  • Binary Thresholding
  • Inverse Binary Thresholding
  • Adaptive Thresholding
  • Otsu’s Thresholding

Binary Thresholding

Binary thresholding is the simplest form of thresholding. In binary thresholding, a threshold value is defined, and all pixel values above this threshold are set to 255 (white). All other pixel values are set to 0 (black). To perform binary thresholding using OpenCV, you can use the cv2.threshold function.

The following code snippet demonstrates how to apply binary thresholding on an image.

import cv2
import matplotlib.pyplot as plt

# Read the image in grayscale
image = cv2.imread('image.jpg', 0)

# Apply binary thresholding
threshold_value = 128
max_value = 255
_, binary_image = cv2.threshold(image, threshold_value, max_value, cv2.THRESH_BINARY)

# Display the original and binary images
plt.subplot(121), plt.imshow(image, cmap='gray')
plt.title('Original Image'), plt.xticks([]), plt.yticks([])

plt.subplot(122), plt.imshow(binary_image, cmap='gray')
plt.title('Binary Image'), plt.xticks([]), plt.yticks([])

plt.show()

In the code above, we first read an image in grayscale format using the cv2.imread function. We then apply binary thresholding on the image using the cv2.threshold function. The function takes four arguments:

  • image: The input image
  • threshold_value: The threshold value
  • max_value: The maximum value to be assigned to pixel values higher than the threshold value
  • cv2.THRESH_BINARY: The thresholding type to apply

The function returns two values: the threshold value used and the output binary image.

Finally, we display the original and thresholded images side by side using the plt.subplot and plt.imshow functions.

Inverse Binary Thresholding

Inverse binary thresholding works the same way as binary thresholding, except that the pixel values are inverted. All pixel values above the threshold value are set to 0 (black), while the pixel values below the threshold value are set to 255 (white). Inverse binary thresholding can be useful in situations where you want to highlight dark regions in an image.

To perform inverse binary thresholding using OpenCV, you can use the cv2.THRESH_BINARY_INV flag instead of the cv2.THRESH_BINARY flag in the cv2.threshold function.

The following code demonstrates how to apply inverse binary thresholding on an image.

import cv2
import matplotlib.pyplot as plt

# Read the image in grayscale
image = cv2.imread('image.jpg', 0)

# Apply inverse binary thresholding
threshold_value = 128
max_value = 255
_, inverse_image = cv2.threshold(image, threshold_value, max_value, cv2.THRESH_BINARY_INV)

# Display the original and inverse binary images
plt.subplot(121), plt.imshow(image, cmap='gray')
plt.title('Original Image'), plt.xticks([]), plt.yticks([])

plt.subplot(122), plt.imshow(inverse_image, cmap='gray')
plt.title('Inverse Binary Image'), plt.xticks([]), plt.yticks([])

plt.show()

In the code above, we read an image in grayscale format and apply inverse binary thresholding using the cv2.threshold function with the cv2.THRESH_BINARY_INV flag. We thendisplay the original and thresholded images side by side using the plt.subplot and plt.imshow functions.

Adaptive Thresholding

Simple thresholding techniques work well when the background and foreground of an image have similar lighting conditions. However, when the lighting conditions are not uniform across the image, adaptive thresholding can be more effective. In adaptive thresholding, the threshold value is calculated based on a local area of the image.

To perform adaptive thresholding using OpenCV, you can use the cv2.adaptiveThreshold function. The function takes the following arguments:

  • image: The input image
  • max_value: The maximum value to be assigned to pixel values higher than the threshold value
  • adaptive_method: The adaptive thresholding method to use. This can be either cv2.ADAPTIVE_THRESH_MEAN_C or cv2.ADAPTIVE_THRESH_GAUSSIAN_C.
  • threshold_type: The thresholding type to apply. This can be cv2.THRESH_BINARY or cv2.THRESH_BINARY_INV.
  • block_size: The size of the local area used to calculate the threshold value. This should be an odd integer greater than 1.
  • C: A constant value subtracted from the mean or weighted mean calculated by the algorithm.

The following code demonstrates how to apply adaptive thresholding using OpenCV.

import cv2
import matplotlib.pyplot as plt

# Read the image
image = cv2.imread('image.jpg', 0)

# Apply adaptive thresholding
max_value = 255
adaptive_method = cv2.ADAPTIVE_THRESH_GAUSSIAN_C
threshold_type = cv2.THRESH_BINARY_INV
block_size = 11
C = 4
adaptive_image = cv2.adaptiveThreshold(image, max_value, adaptive_method, threshold_type, block_size, C)

# Display the original and adaptive thresholded images
plt.subplot(121), plt.imshow(image, cmap='gray')
plt.title('Original Image'), plt.xticks([]), plt.yticks([])

plt.subplot(122), plt.imshow(adaptive_image, cmap='gray')
plt.title('Adaptive Thresholded Image'), plt.xticks([]), plt.yticks([])

plt.show()

In the code above, we read an image and apply adaptive thresholding using the cv2.adaptiveThreshold function. We specify the cv2.ADAPTIVE_THRESH_GAUSSIAN_C adaptive method and the cv2.THRESH_BINARY_INV thresholding type. We use a block_size of 11 and a constant C of 4.

Otsu’s Thresholding

Otsu’s thresholding is a method of automatically calculating the threshold value based on the histogram of the image. It works by maximizing the variance between the foreground and background of the image.

To perform Otsu’s thresholding using OpenCV, you can use the cv2.threshold function with the cv2.THRESH_OTSU flag. The function automatically calculates the threshold value based on the histogram of the image.

The following code demonstrates how to apply Otsu’s thresholding using OpenCV.

import cv2
import matplotlib.pyplot as plt

# Read the image in grayscale
image = cv2.imread('image.jpg', 0)

# Apply Otsu's thresholding
threshold_value, otsu_image = cv2.threshold(image, 0, 255, cv2.THRESH_BINARY+cv2.THRESH_OTSU)

# Display the original and Otsu thresholded images
plt.subplot(121), plt.imshow(image, cmap='gray')
plt.title('Original Image'), plt.xticks([]), plt.yticks([])

plt.subplot(122), plt.imshow(otsu_image, cmap='gray')
plt.title("Otsu's Thresholded Image"), plt.xticks([]), plt.yticks([])

plt.show()

In the code above, we read an image in grayscale format and apply Otsu’s thresholding using the cv2.threshold function with the cv2.THRESH_OTSU flag. The function automatically determines the threshold value based on the histogram of the image. We then display the original and thresholded images side by side using the plt.subplot and plt.imshow functions.

Conclusion

In conclusion, thresholding is a simple yet powerful technique used in image segmentation. In this article, we discussed several simple thresholding techniques that can be applied using Python OpenCV. We showed how to implement binary thresholding, inverse binary thresholding, adaptive thresholding, and Otsu’s thresholding using code examples. With this knowledge, you can apply different thresholding techniques to your own images and improve your image processing applications.

Like(0)

Related

Python OpenCV
Color Identification in Images using Python and OpenCVColor quantization in an image using K-means in OpenCV PythonDetecting corners using Harris corner detector in Python OpenCVHow to Access and Modify Pixel Value in an Image Using OpenCV PythonHow to access image properties in OpenCV using Python?How to Apply Affine Transformation on an Image in OpenCV Python?How to Apply Custom Filters to Images (2D Convolution) Using OpenCV Python?How to apply Perspective Transformations on an image using OpenCV Python?How to Approximate a Contour Shape in an Image Using OpenCV PythonHow to Blend Images Using Image Pyramids in OpenCV Python?How to Blur Faces in an Image using OpenCV Python?How to Change the Contrast and Brightness of an Image Using OpenCV in PythonHow to check if an image contour is convex or not in OpenCV Python?How to Compare Histograms of Two Images Using OpenCV Python?How to compare two images in OpenCV Python?How to Compute and Plot 2D Histograms of an Image in OpenCV Python?How to Compute Hu-Moments of an Image in OpenCV Python?How to Compute Image Moments in OpenCV Python?How to Compute the Area and Perimeter of an Image Contour using OpenCV Python?How to Compute the Aspect Ratio of an Object in an Image using OpenCV Python?How to Compute the Extent of an Object in an Image using OpenCV Python?How to Compute the Morphological Gradient of an Image Using OpenCV in Python?How to Convert a Colored Image to HLS in OpenCV using Python?How to convert an RGB image to HSV image using OpenCV Python?How to create a black image and a white image using OpenCV Python?How to Create a Depth Map from Stereo Images in OpenCV Python?How to Create a Trackbar as the HSV Color Palette using OpenCV Python?How to create a trackbar as the RGB color palette using OpenCV Python?How to Create a Watermark on an Image Using OpenCV Python?How to Crop and Save Detected Faces in OpenCV Python?How to detect a face and draw a bounding box around it using OpenCV Python?Detecting Rectangles and Squares in Images with OpenCV and PythonHow to detect a triangle in an image using OpenCV Python?How to Detect and Draw FAST Feature Points in OpenCV Python?How to detect cat faces in an image in OpenCV using Python?How to detect eyes in an image using OpenCV Python?How to Detect Humans in an Image in OpenCV Python?How to Detect License Plates Using OpenCV Python?How to detect polygons in image using OpenCV Python?How to Draw an Arrowed Line on an Image in OpenCV PythonHow to Draw Filled Ellipses in OpenCV using PythonHow to draw polylines on an image in OpenCV using Python?How to Extract the Foreground of an Image Using OpenCV Python?How to find and draw Convex Hull of an image contour in OpenCV Python?How to Find Discrete Cosine Transform of an Image Using OpenCV PythonHow to Find Gaussian Pyramids for an Image Using OpenCV in Python?How to Find Image Gradients using the Scharr Operator in OpenCV Python?How to Find Laplassian Pyramids for an Image Using OpenCV in Python?How to find patterns in a chessboard using OpenCV Python?How to find the bounding rectangle of an image contour in OpenCV Python?How to find the Fourier Transform of an image using OpenCV Python?How to find the Fourier Transforms of Gaussian and Laplacian filters in OpenCV Python?How to Find the HSV values of a Color Using OpenCV Python?How to find the image gradients using Sobel and Laplacian derivatives in OpenCV Python?How to Find the Minimum Enclosing Circle of an Object in OpenCV Python?How to find the solidity and equivalent diameter of an object in an image using OpenCV Python?How to fit the ellipse to an object in an image using OpenCV Python?How to flip an image in OpenCV Python?How to Implement FLANN Based Feature Matching in OpenCV PythonHow to Implement ORB Feature Detectors in OpenCV Python?How to implement probabilistic Hough Transform in OpenCV Python?How to join two images horizontally and vertically using OpenCV Python?How to Mask an Image in OpenCV Python?How to Match Image Shapes in OpenCV Python?How to Normalize an Image in OpenCV Python?How to Perform Adaptive Mean and Gaussian Thresholding of an Image using Python OpenCV?How to Perform Bilateral Filter Operation on an Image in OpenCV using Python?How to Perform Bitwise AND Operation on Two Images in OpenCV Python?How to Perform Bitwise OR Operation on Two Images in OpenCV PythonHow to Perform Bitwise XOR Operation on Images in OpenCV Python?How to Perform Different Simple Thresholding of an Image Using Python OpenCV?How to Perform Distance Transformation on a Given Image in OpenCV Python?How to Perform Image Rotation in OpenCV using PythonHow to Perform Image Translation Using OpenCV in Python?How to Perform Image Transpose Using OpenCV Python?How to Perform Matrix Transformation in OpenCV Python?How to perform Otsu's thresholding on an image using Python OpenCV?How to Plot Histograms of Different Colors of an Image in OpenCV Python?How to Resize an Image in OpenCV Using Python?How to Rotate an Image in OpenCV Python?How to Split an Image into Different Color Channels in OpenCV Python?Implementing k-Nearest Neighbor in OpenCV PythonImplementing Shi-Tomasi Corner Detector in OpenCV PythonOpenCV Python ŌĆō How to add borders to an image?OpenCV Python ŌĆō How to compute and plot the histogram of a region of an image?OpenCV Python ŌĆō How to Convert a Colored Image to a Binary Image?OpenCV Python – How to detect and draw keypoints in an image using SIFT?Opencv Python – How to display the coordinates of points clicked on an image?OpenCV Python ŌĆō How to draw a rectangle using Mouse Events?OpenCV Python ŌĆō How to Draw Circles Using Mouse Events?OpenCV Python ŌĆō How to draw curves using Mouse Events?OpenCV Python ŌĆō How to find and draw extreme points of an object on an image?OpenCV Python ŌĆō How to find the shortest distance between a point in the image and a contour?OpenCV Python ŌĆō How to perform bitwise NOT operation on an image?OpenCV Python ŌĆō How to Perform SQRBox Filter Operation on An ImageOpenCV Python – Implementing feature matching between two images using SIFTOpenCV Python – Matching the key points of two images using ORB and BFmatcherSmile Detection using Haar Cascade in OpenCV using Python