How to do it...

  1. Import the Computer Vision package - cv2:
import cv2 
  1. Read the image using the built-in imread function:
image = cv2.imread('image_1.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(0) 
  1. Save the image using the built-in imwrite function:
cv2.imwrite("Saved Image.jpg", image) 
  1. The command used to execute the Python program Load_Display_Save.py is shown here:
  1. The result obtained after executing Load_Display_Save.py is shown here:

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.