Python Pillow: Show an Image Using Image.show()

In this tutorial, we will use an example to show you how to display an image using python pillow.

Python Pillow - Show an Image Using Image.show()

1.Read an image using python pillow

from PIL import Image

#read the image
im = Image.open("sample-image.png")

2.Use Image.show() to display an image

#show image
im.show()

Drawing Circles Using cv2.circle() in Python OpenCV