File size: 836 Bytes
2fb348b
 
 
ae76371
2fb348b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st  
from tensorflow.keras.models import load_model
from PIL import Image
import numpy as np
model=load_model('src/skin_cancer_model.h5')

def process_image(img):
    img=img.resize((170,170))
    img=np.array(img)
    img=img/255.0 
    img=np.expand_dims(img,axis=0)
    return img

st.title('Deri Kanser resmi sınıflandırma :cancer:')
st.write('Resim seç, model kanser olup olmadığını tahmin etsin!')
file=st.file_uploader('Bir resim yükle',type=['jpg','jpeg','png'])
if file is not None: # Resim yuklenmisse burasi calisacak
    img=Image.open(file)
    st.image(img, caption='Yuklenen Resim')
    image=process_image(img)
    prediction=model.predict(image)
    predicted_class = 1 if prediction > 0.5 else 0
    class_names=['Kanser değil','Kanser']
    st.write(class_names[predicted_class])