Spaces:
Sleeping
Sleeping
File size: 242 Bytes
2db8ee1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from ingest.image_ingest import ingest_image
from PIL import Image
img_path = ingest_image(
"../data/raw/devops.png",
"../data/processed/images"
)
img = Image.open(img_path)
img.verify()
print(" Standalone image ingestion works")
|