Answers for "call image in 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

read image python

from skimage import io

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

Python Answers by Framework

Browse Popular Code Answers by Language