Loading, displaying, and saving images
This section presents how to work on images by means of OpenCV-Python. Furthermore, we discuss how to load, display, and save images.
How to do it...
- Import the Computer Vision package -
cv2:
import cv2
- Read the image using the built-in
imreadfunction:
image = cv2.imread('image_1.jpg')- Display the original image using the built-in
imshowfunction:
cv2.imshow("Original", image) - Wait until any key is pressed:
cv2.waitKey(0)
- Save the image using the built-in
imwritefunction:
cv2.imwrite("Saved Image.jpg", image) - The command used to execute the Python program
Load_Display_Save.pyis shown here:

- The result obtained after executing
Load_Display_Save.pyis shown here:
