-
Notifications
You must be signed in to change notification settings - Fork 2
/
imagerec.py
21 lines (21 loc) · 956 Bytes
/
imagerec.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from tensorflow.keras.models import load_model
from PIL import Image, ImageOps
import numpy as np
def imagerecognise(uploadedfile,modelpath,labelpath):
np.set_printoptions(suppress=True)
model = load_model(modelpath, compile=False)
class_names = open(labelpath, "r").readlines()
data = np.ndarray(shape=(1, 224, 224, 3), dtype=np.float32)
image = Image.open(uploadedfile).convert("RGB")
size = (224, 224)
image = ImageOps.fit(image, size, Image.Resampling.LANCZOS)
image_array = np.asarray(image)
normalized_image_array = (image_array.astype(np.float32) / 127.5) - 1
data[0] = normalized_image_array
prediction = model.predict(data)
index = np.argmax(prediction)
class_name = class_names[index]
confidence_score = prediction[0][index]
# print("Class:", class_name[2:], end="")
# print("Confidence Score:", confidence_score)
return(class_name[2:],confidence_score)