Agregar una imagen Google Colab

PHOTO EMBED

Sat Oct 01 2022 03:27:29 GMT+0000 (Coordinated Universal Time)

Saved by @DiegoEraso #python #colab

from PIL import Image  
import matplotlib.pyplot as plt
%matplotlib inline

img_paht = "/content/drive/MyDrive/Imagenes/"
file = img_paht+'6.jpg'

I = Image.open(file)
plt.imshow(I)
plt.title('Imagen_1'),plt.axis('off') 
plt.show()
content_copyCOPY