How to do it...

  1. Create a new Python file and import the following packages:
# Scaling (Resizing) Images - Cubic, Area, Linear Interpolations 
# Interpolation is a method of estimating values between known data points  
# Import Computer Vision package - cv2 
import cv2 
# Import Numerical Python package - numpy as np 
import numpy as np 
  1. Read the image using the built-in imread function:
image = cv2.imread('image_3.jpg') 
  1. Display the original image using the built-in imshow function:
cv2.imshow("Original", image) 
  1. Wait until any key is pressed:
cv2.waitKey() 
  1. Adjust the image size based on the operator's command:
# cv2.resize(image, output image size, x scale, y scale, interpolation) 
  1. Adjust the image size using cubic interpolation: ...

Get Raspberry Pi 3 Cookbook for Python Programmers - Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.