“Afficher l'image en python” Réponses codées

Afficher l'image en python

from PIL import Image

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

#show image
im.show()
Lively Lark

Afficher l'image en python

# Import required libraries
from matplotlib import pyplot as plt
from matplotlib import image as mpimg
 
plt.title('GradCAM Bee Image') # Adds title
plt.xlabel('X pixel scaling') # Adds X label
plt.ylabel('Y pixels scaling') # Adds y label
 
im = mpimg.imread('GradCAM_Bee.png') # Reads the image

plt.imshow(im) 
plt.show()
Elisabeth Engering

Afficher l'image Python

from IPython import display
display.Image("path_to_image/image_name.jpg")
Abdelrahman Osama

Afficher une image dans Python

# importing Image class from PIL package
from PIL import Image
 
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
 
im.show()
20BCS063 Mohammad Kashif

Réponses similaires à “Afficher l'image en python”

Questions similaires à “Afficher l'image en python”

Plus de réponses similaires à “Afficher l'image en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code