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()
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter