Answers for "read and show image python"

7

show image in python

from PIL import Image

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

#show image
im.show()
Posted by: Guest on November-01-2020
1

python image read

from skimage import io

img = io.imread(file_path)
Posted by: Guest on July-12-2021

Code answers related to "read and show image python"

Python Answers by Framework

Browse Popular Code Answers by Language