from PIL import Image
import io
from IPython.display import display
Load and enhance the image
image_path = "/mnt/data/file-HZsa9n9nAuc3tCYKkZyF1f"
image = Image.open(image_path)
Upscale the image and apply a slight sharpening filter
enhanced_image = image.resize((image.width * 2, image.height * 2), Image.LANCZOS)
Display the result
enhanced_image.show()