from PIL import Image import matplotlib.pyplot as plt # Caricare le immagini img_man = Image.open("IMG-20251008-WA0002.jpg") img_kitchen = Image.open("IMG-20251015-WA0014.jpg") # Mostrare le immagini caricate fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(14, 7)) ax1.imshow(img_man) ax1.set_title("Uomo elegante (selfie)") ax1.axis('off') ax2.imshow(img_kitchen) ax2.set_title("Cucina") ax2.axis('off') plt.tight_layout() plt.show() See more