DSatishchandra's picture
Create utils.py
9f67421 verified
raw
history blame contribute delete
127 Bytes
from PIL import Image
def load_image(image_path):
image = Image.open(image_path) # Load image from path
return image