Spaces:
Sleeping
Sleeping
File size: 785 Bytes
ad05d30 7a17e02 b98f7fd |
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 |
#!/usr/bin/env python
# coding: utf-8
import streamlit as st
from tensorflow.keras.models import load_model
from PIL import Image
import numpy as np
import cv2
model = load_model('Malaria_cnn.h5')
def process_image(img):
img = img.resize((30, 30))
img = np.array(img)
img = img / 255.0
img = np.expand_dims(img, axis=0)
return img
st.title('Malaria Parazit Tarama')
st.write('Resim seçin ve model tahmin etsin')
file = st.file_uploader('Bir resim seçin', type=['jpg', 'jpeg', 'png'])
if file is not None:
img = Image.open(file)
st.image(img, caption='Yüklenen resim')
image = process_image(img)
prediction = model.predict(image)
st.write(prediction[0])
if prediction[0]<=.5:
st.write('Normal')
else: st.write('Parazit') |