Update image_processing.py

This commit is contained in:
2025-06-14 12:32:11 +02:00
parent 1c93f4fae7
commit 339b4e5c3e

View File

@@ -9,6 +9,7 @@ async def process_image(image: bytes) -> str:
image_file = io.BytesIO(image)
img = Image.open(image_file)
img.save("received_image.jpg")
results = car_model.predict(source=img)