Miguel Angel commited on
Commit
e985b9e
1 Parent(s): 26b9c2e

main | Initial repository

Browse files
Files changed (2) hide show
  1. app.py +111 -0
  2. requirements.txt +5 -0
app.py ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from PIL import Image
3
+ import numpy as np
4
+ import cv2
5
+ from huggingface_hub import from_pretrained_keras
6
+
7
+ st.header("Segmentación de dientes con rayos X")
8
+
9
+ st.markdown(
10
+ """
11
+ Hola estudiantes de Platzi 🚀. Este modelo usa UNet para segmentar imágenes
12
+ de dientes en rayos X. Se utila un modelo de Keras importado con la función
13
+ `huggingface_hub.from_pretrained_keras`. Recuerda que el Hub de Hugging Face está integrado
14
+ con muchas librerías como Keras, scikit-learn, fastai y otras.
15
+ El modelo fue creado por [SerdarHelli](https://huggingface.co/SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net).
16
+ """
17
+ )
18
+
19
+ # Seleccionamos y cargamos el modelo
20
+ model_id = "SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net"
21
+ model = from_pretrained_keras(model_id)
22
+
23
+ # Permitimos a la usuaria cargar una imagen
24
+ archivo_imagen = st.file_uploader(
25
+ "Sube aquí tu imagen.", type=["png", "jpg", "jpeg"])
26
+
27
+ # Si una imagen tiene más de un canal entonces se convierte a escala de grises (1 canal)
28
+
29
+
30
+ def convertir_one_channel(img):
31
+ if len(img.shape) > 2:
32
+ img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
33
+ return img
34
+ else:
35
+ return img
36
+
37
+
38
+ def convertir_rgb(img):
39
+ if len(img.shape) == 2:
40
+ img = cv2.cvtColor(img, cv2.COLOR_GRAY2RGB)
41
+ return img
42
+ else:
43
+ return img
44
+
45
+
46
+ # Manipularemos la interfaz para que podamos usar imágenes ejemplo
47
+ # Si el usuario da click en un ejemplo entonces el modelo correrá con él
48
+ ejemplos = ["dientes_1.png", "dientes_2.png", "dientes_3.png"]
49
+
50
+ # Creamos tres columnas; en cada una estará una imagen ejemplo
51
+ col1, col2, col3 = st.columns(3)
52
+ with col1:
53
+ # Se carga la imagen y se muestra en la interfaz
54
+ ex = Image.open(ejemplos[0])
55
+ st.image(ex, width=200)
56
+ # Si oprime el botón entonces usaremos ese ejemplo en el modelo
57
+ if st.button("Corre este ejemplo 1"):
58
+ archivo_imagen = ejemplos[0]
59
+
60
+ with col2:
61
+ ex1 = Image.open(ejemplos[1])
62
+ st.image(ex1, width=200)
63
+ if st.button("Corre este ejemplo 2"):
64
+ archivo_imagen = ejemplos[1]
65
+
66
+ with col3:
67
+ ex2 = Image.open(ejemplos[2])
68
+ st.image(ex2, width=200)
69
+ if st.button("Corre este ejemplo 3"):
70
+ archivo_imagen = ejemplos[2]
71
+
72
+ # Si tenemos una imagen para ingresar en el modelo entonces
73
+ # la procesamos e ingresamos al modelo
74
+ if archivo_imagen is not None:
75
+ # Cargamos la imagen con PIL, la mostramos y la convertimos a un array de NumPy
76
+ img = Image.open(archivo_imagen)
77
+ st.image(img, width=850)
78
+ img = np.asarray(img)
79
+
80
+ # Procesamos la imagen para ingresarla al modelo
81
+ img_cv = convertir_one_channel(img)
82
+ img_cv = cv2.resize(img_cv, (512, 512), interpolation=cv2.INTER_LANCZOS4)
83
+ img_cv = np.float32(img_cv / 255)
84
+ img_cv = np.reshape(img_cv, (1, 512, 512, 1))
85
+
86
+ # Ingresamos el array de NumPy al modelo
87
+ predicted = model.predict(img_cv)
88
+ predicted = predicted[0]
89
+
90
+ # Regresamos la imagen a su forma original y agregamos las máscaras de la segmentación
91
+ predicted = cv2.resize(
92
+ predicted, (img.shape[1], img.shape[0]
93
+ ), interpolation=cv2.INTER_LANCZOS4
94
+ )
95
+ mask = np.uint8(predicted * 255) #
96
+ _, mask = cv2.threshold(
97
+ mask, thresh=0, maxval=255, type=cv2.THRESH_BINARY + cv2.THRESH_OTSU
98
+ )
99
+ kernel = np.ones((5, 5), dtype=np.float32)
100
+ mask = cv2.morphologyEx(mask, cv2.MORPH_OPEN, kernel, iterations=1)
101
+ mask = cv2.morphologyEx(mask, cv2.MORPH_CLOSE, kernel, iterations=1)
102
+ cnts, hieararch = cv2.findContours(
103
+ mask, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
104
+ output = cv2.drawContours(
105
+ convertir_one_channel(img), cnts, -1, (255, 0, 0), 3)
106
+
107
+ # Si obtuvimos exitosamente un resultadod entonces lo mostramos en la interfaz
108
+ if output is not None:
109
+ st.subheader("Segmentación:")
110
+ st.write(output.shape)
111
+ st.image(output, width=850)
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ numpy
2
+ Pillow
3
+ scipy
4
+ opencv-python
5
+ tensorflow