Spaces:
Sleeping
Sleeping
File size: 1,082 Bytes
5b3feb2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import numpy as np
import tensorflow as tf
from PIL import Image
from io import BytesIO
import numpy as np
MODEL_IMAGE_WIDTH = 256
MODEL_IMAGE_HEIGHT = 256
def load_image(img_data):
image = Image.open(BytesIO(img_data))
return image
def preprocess_image(image):
# Resize the image to be of the model size
image = image.resize((MODEL_IMAGE_WIDTH, MODEL_IMAGE_HEIGHT))
# Convert it to grayscale if not
image = image.convert('L')
return image
def predict(image, model):
# Convert the image to numpy array
image = np.array(image)
# Add an extra dimension at the end
image = np.expand_dims(image, axis=-1)
# Also add one dimension at the front ot make it as single batch
batch_img = np.expand_dims(image, axis=0)
print("Batch Image shape: ", batch_img.shape)
# Make the prediction from the model
pred_probs = model.predict(batch_img)[0]
label = np.argmax(pred_probs, axis=-1)
return {
'pred_probs': pred_probs.tolist(),
'label': int(label)
} |