File size: 963 Bytes
cf475a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st
from tensorflow.keras.models import load_model
from PIL import Image
import numpy as np
import cv2

model = load_model('C:/Users/mucahit/Desktop/day13/my_cnn_model.h5')

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

st.title('Kanser Resmi Siniflandirma :cancer:')
st.write('Resim seç ve model kanser olup olmadigini tahmin etsin')

file = st.file_uploader('Bir Resim Seç', type=['jpeg', 'jpg', 'png'])

if file is not None:
    img = Image.open(file)
    st.image(img, caption='Yuklenen resim')
    img = np.array(img)  
    if img.shape[2] == 4:  
        img = cv2.cvtColor(img, cv2.COLOR_BGRA2BGR)  
    
    image = process_image(img)
    prediction = model.predict(image)
    prediction_class = np.argmax(prediction) 

    class_names = ['Kanser Değil', 'Kanser']
    st.write(class_names[prediction_class])