from PIL import Image import matplotlib.pyplot as plt # Load and display your image image_path = "IMG_0137.jpeg" # Make sure this is in your working directory original_image = Image.open(image_path).convert("RGB") # Display the image plt.figure(figsize=(6, 6)) plt.imshow(original_image) plt.axis("off") plt.title("Original Drawing") plt.show() See more