Python Image Resize With Pillow and OpenCV

python resize

What Is Python Image-Resize?

Python is a popular object-oriented programming language for image-related tasks for webpages, visualizations, or when using Python for machine-learning operations through frameworks like OpenCV and Scikit Learn.

Reducing the size of an image means changing its dimensions by removing its pixels. Scaling up an image increases the number of its pixels but lowers quality. Either way, the image’s aspect ratio changes, which results in distortion.

This article describes how to resize images in bulk with the Pillow library, a popular fork of the Python Imaging Library (PIL); and, to maintain the quality and aspect ratio, in OpenCV, a robust library of programming functions for computer vision. Also explained is how to resize and crop Python images with Cloudinary through automation.

Resize Images in Python With Pillow

Pillow is a fork of the Python Imaging Library (PIL) that supports Python 3 and numerous image formats, including PNG, JPEG, TIFF, and PPM. When you load an image from a file, create a new image, or generate separate instances for images, you create an instance of PIL’s Image class.

To resize an image with Pillow’s resize() method:

  1. Import the PIL image class:
    1. from PIL import Image
  2. Load the image from a file with the open() function:
    1. image = Image.open('myimage.jpg')

    The above command returns an Image object. In case of failure, the command returns an OSError exception.

  3. Call the resize() method on the new image instance, passing a tuple argument with two integers to specify the width and height you desire:
    1. image = Image.open('myimage.jpg')
    2. new_image = image.resize((500, 500))
    3. new_image.save('myimage_500.jpg')

    Note: Instead of modifying the image file, this function returns a separate Image instance with the new dimensions.

The resize() method has two drawbacks, however:

  • Oftentimes, resizing to an exact width and height changes the image’s aspect ratio, leading to distortions.
  • If you set the size of the new instance to be larger than that of the original, resize() “blows up” the instance, reducing its quality.

As a solution, resize the image with the more advanced Pillow method, thumbnail():

  1. Perform steps 1 and 2 of the above procedure.
  2. Call the thumbnail() method on the Image instance, passing a tuple argument with two integers to specify the width and height you desire:
    1. image = Image.open('demo_image.jpg')
    2. image.thumbnail((400, 400))
    3. image.save('image_thumbnail.jpg')
    4. print(image.size) # Output: (400, 350)

As shown under print, the size of the new instance is 400×350 pixels. The aspect ratio of the original image remains unchanged. In addition, if the dimensions of the original are smaller than that specified for the new instance, instead of “blowing up” the image, thumbnail() returns an instance of the same size.

Automatically resize and crop image with AI

Resize Images in Python With OpenCV

OpenCV is an open-source computer-vision library with thousands of machine-learning and deep-learning algorithms for face detection, object recognition, and many other computer-vision tasks. Given that numerous computer-vision models require a certain size and quality level for their images, resizing is critical. To determine which image variation performs best, experiment with different sizes or resolutions.

Here is the full syntax for the resize() method in OpenCV:

cv2.resize(src, dsize, fx, fy, interpolation)

The parameters are as follows:

src The file path in which the input image resides.
dsize The size of the output image, which adheres to the syntax (width, height).
fx The scale factor for the X axis.
fy The scale factor for the Y axis.
interpolation The technique for adding or removing pixels during the resizing process. The default is cv2.INTER_LINEAR.

Note: Apply either dsize or fx and fy, or all three.

To perform a simple resizing task with OpenCV:

  1. Import the OpenCV library:
    1. import cv2
    2. import matplotlib.pyplot as plt
  2. Acquire a sample image and specify its current size:
    1. #read image
    2. img=cv2.imread("myimage.jpg")
    3. print('Image Width is',img.shape[1])
    4. print('Image Height is',img.shape[0])
  3. Resize the image of, say, a size of 800×600 pixels, to 300×300 pixels:
    1. cv2.resize(img, (300,300))

As in the previous example on resizing images with Pillow’s resize() method, this procedure changes the aspect ratio, causing distortions. To maintain that ratio, run the following command to resize the image to 75% of its width and height:

img_75 = cv2.resize(img, None, fx = 0.75, fy = 0.75)

In addition, for a resized instance that is larger than the original, you can customize the interpolation of the resize operation. Even though doing that causes quality loss, it might be the right choice for certain computer-vision applications.

Here are the values for the interpolation argument:

cv2.INTER_LINEAR The standard bilinear interpolation, ideal for enlarged images.
cv2.INTER_NEAREST The nearest neighbor interpolation, which, though fast to run, creates blocky images.
cv2.INTER_AREA The interpolation for the pixel area, which scales down images.
cv2.INTER_CUBIC The bicubic interpolation with 4×4-pixel neighborhoods, which, though slow to run, generates high-quality instances.
cv2.INTER_LANCZOS4 The Lanczos interpolation with an 8×8-pixel neighborhood, which generates images of the highest quality but is the slowest to run.

Resize and Crop Python Images With Cloudinary Through Automation

A cloud-based service for managing images and videos, Cloudinary offers a generous free-forever subscription plan. While on that platform, you can upload images and apply built-in effects, filters, and modifications.

You can also resize images through automation, focusing on the most important elements with AI, or adapt them to your website design by, for example, specifying the width, height, and aspect ratio as qualifiers for the new image instances. Cloudinary then automatically performs the resizing and cropping tasks to meet the criteria. No manual efforts are required.

Take this 1,200×1,200-pixel image:

Resizing it to 200×200 pixels with crop, scale, fill, and pad results in the following images:

Original Image

Focus on the model in a portrait crop

Detect the face for a thumbnail crop

Automatically determine what to keep in a banner crop

To automate image resizing and cropping on Cloudinary:

  1. Sign up for a free Cloudinary account.
  2. Install the Python SDK.
  3. Set the transformation criteria for the above examples:
    # Focus on the model in a portrait crop.
    
    CloudinaryImage("docs/model.jpg").image(gravity="person", height=600, width=450, crop="fill")
    
    # Detect the face for a thumbnail crop.
    
    CloudinaryImage("docs/model.jpg").image(gravity="face", height=250, width=250, crop="thumb")
    
    # Crop to a banner, automatically focusing on a region of interest.
    
    CloudinaryImage("docs/model.jpg").image(gravity="auto", height=150, width=600, crop="fill")
    
    

Simplify Your Image Resizing with Cloudinary

Python offers numerous modules and libraries, such as Pillow and OpenCV, to resize images. While these tools are powerful and versatile, they require significant coding effort to handle various use cases, such as different image formats, sizes, and quality requirements. This can be a daunting task for developers looking to streamline their workflow rather than managing image processing code.

The Cloudinary API not only simplifies the process of resizing images but also provides a comprehensive suite of image management functionalities. With Cloudinary, you can easily handle image uploads, transformations, optimizations, and even advanced features like automatic format selection, watermarking, and responsive image delivery.

Ready to take your image processing to the next level? Sign up for a free Cloudinary account today and experience the ease and power of Cloudinary’s image management solutions. Start simplifying your workflow and focus on what truly matters—building great applications.

QUICK TIPS
Tamas Piros
Cloudinary Logo Tamas Piros

In my experience, here are tips that can help you better resize images using Python with Pillow and OpenCV:

  1. Maintain aspect ratio with thumbnail() in Pillow
    Use thumbnail() in Pillow instead of resize() to maintain the image’s original aspect ratio. This method automatically scales the image down to fit within the specified dimensions, avoiding distortion while ensuring the image is not enlarged beyond its original size.
  2. Use ANTIALIAS filter for high-quality resizing in Pillow
    When resizing images with Pillow’s resize(), apply the Image.ANTIALIAS filter to reduce aliasing and achieve smoother results. This is particularly useful when downscaling images, as it improves quality by reducing jagged edges.
  3. Utilize OpenCV’s INTER_AREA for downscaling
    When resizing images to a smaller size with OpenCV, use cv2.INTER_AREA for interpolation. This method is designed for downscaling, as it produces high-quality results by averaging pixel values, making it ideal for reducing image size while maintaining clarity.
  4. Apply INTER_CUBIC for upscaling in OpenCV
    For enlarging images in OpenCV, use cv2.INTER_CUBIC interpolation. Though slower, it produces higher-quality results for upscaling compared to INTER_LINEAR by considering a larger neighborhood of pixels.
  5. Precompute scaling factors for faster resizing
    If you are consistently resizing images by a specific percentage, calculate the scaling factors (fx and fy) ahead of time instead of manually setting new dimensions each time. This approach is faster and more efficient for bulk image processing in OpenCV.
  6. Handle transparency with convert('RGBA') in Pillow
    When resizing images with transparency (e.g., PNGs) in Pillow, ensure you use image.convert('RGBA') before resizing. This ensures that the alpha (transparency) channel is preserved during the resize operation.
  7. Batch process images with Pillow and OpenCV
    To resize multiple images at once, use Python’s os module to iterate through files in a directory and apply the resize operation. This automation is especially useful for processing entire folders of images for web optimization or machine learning.
  8. Apply resize() for consistent target size with cropping
    When you need to resize an image to exact dimensions, use resize() in both Pillow and OpenCV. If maintaining the aspect ratio is not required, this method allows for cropping to match specific target dimensions.
  9. Use imutils for easier OpenCV image manipulation
    Use the imutils Python library, a wrapper for OpenCV, to simplify common image manipulations like resizing. It provides a convenient imutils.resize() function that automatically calculates the necessary dimensions to maintain the aspect ratio.
  10. Offload resizing tasks to Cloudinary for scalability
    For large-scale image processing, integrate Cloudinary into your workflow. Cloudinary handles image resizing, format conversion, and optimizations via URL-based transformations, freeing your Python code from dealing with manual image processing.

These tips will help you efficiently resize images in Python, ensuring better quality, performance, and scalability in your image-processing workflows.

Last updated: Oct 1, 2024