Trim image to remove whitespace using Python

Guide on using Python to trim whitespace around an image (trim image) using the OpenCV library. This Python code helps to crop out excess whitespace around an image to highlight the main content.

import cv2
import numpy as np

def trim_image(image_path, output_path):
    # Read the image from file
    image = cv2.imread(image_path)

    # Convert the image from BGR to grayscale
    gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

    # Create a mask to identify non-white areas
    _, thresh = cv2.threshold(gray, 240, 255, cv2.THRESH_BINARY_INV)

    # Find the bounding box of non-white areas
    x, y, w, h = cv2.boundingRect(thresh)

    # Crop the image based on the bounding box
    trimmed_image = image[y:y+h, x:x+w]

    # Save the cropped image
    cv2.imwrite(output_path, trimmed_image)

# Example usage
trim_image('input_image.jpg', 'trimmed_image.jpg')

Detailed explanation:

  1. Read the image from file:

    • cv2.imread(image_path): Reads the image from the file path.
  2. Convert image to grayscale:

    • cv2.cvtColor(image, cv2.COLOR_BGR2GRAY): Converts the image from BGR color space to grayscale for easier processing.
  3. Create mask and identify non-white areas:

    • cv2.threshold(gray, 240, 255, cv2.THRESH_BINARY_INV): Creates a binary mask where pixels with values > 240 are considered white and inverted (to black) to identify non-white areas.
  4. Find bounding box of non-white areas:

    • cv2.boundingRect(thresh): Determines the bounding rectangle around non-white areas.
  5. Crop the image:

    • image[y:y+h, x:x+w]: Crops the image based on the bounding rectangle found.
  6. Save the cropped image:

    • cv2.imwrite(output_path, trimmed_image): Saves the cropped image to the output file path.

Python Version:

This code uses the OpenCV library and can run on Python 3.6 and above. Ensure that the OpenCV library is installed, which can be done using pip install opencv-python.



Related

Generate Captcha Code Using Python

A comprehensive guide on how to generate Captcha code using Python with the `captcha` library. This guide will help you understand how to create a simple Captcha to protect your forms from spam and bots.
Guide to Creating a Registration Form in Python Using PyQT6

A detailed guide on how to create a registration form in Python using PyQT6, including how to add input fields and handle the registration button event.
How to write data to an Excel file using Python

A guide on how to use Python to write data into an Excel file using the openpyxl library, making it easy to manage and handle Excel data in your projects.
Remove green background from image using Python

Guide on how to use Python to remove green background (chroma key) from an image using the OpenCV library. This Python code helps in removing green backgrounds to replace it with another background or make it transparent.
Common Functions When Using Selenium Chrome in Python

A guide that introduces the most common functions used when working with Selenium and Chrome in Python, enabling tasks like searching, interacting with web elements, and browser navigation.
Creating video from images using OpenCV

A detailed guide on how to create a video from images using Python and the OpenCV library. The article includes source code and line-by-line explanations.
Multithreading in Python

A detailed guide on handling multithreading in Python using the `threading` and `concurrent.futures` libraries. This article helps you understand how to use multithreading to improve concurrent processing efficiency.
How to SELECT data from a MySQL database using Python

A guide on how to connect and query data from a MySQL database using Python and the mysql-connector-python library.
Inject JavaScript code into a website using Selenium in Python

A guide on using Selenium in Python to inject JavaScript code into a website in the Chrome browser. This article will help you understand how to interact with web elements and execute JavaScript.
Removing background from images using Rembg in Python

A detailed guide on how to remove the background from images using Python and the Rembg library. The article includes source code and line-by-line explanations.

main.add_cart_success