Spaces:
Sleeping
Sleeping
rriverar75
commited on
Commit
•
1aee93a
1
Parent(s):
af53f85
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ st.header("Segmentación de dientes con rayos X")
|
|
8 |
|
9 |
st.markdown(
|
10 |
"""
|
11 |
-
Hola 🚀. Este es un
|
12 |
|
13 |
El modelo fue creado por [SerdarHelli](https://huggingface.co/SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net).
|
14 |
|
@@ -19,7 +19,7 @@ El modelo fue creado por [SerdarHelli](https://huggingface.co/SerdarHelli/Segmen
|
|
19 |
model_id = "SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net"
|
20 |
model = from_pretrained_keras(model_id)
|
21 |
|
22 |
-
## Permitimos
|
23 |
archivo_imagen = st.file_uploader("Sube aquí tu imagen.", type=["png", "jpg", "jpeg"])
|
24 |
|
25 |
## Si una imagen tiene más de un canal entonces se convierte a escala de grises (1 canal)
|
|
|
8 |
|
9 |
st.markdown(
|
10 |
"""
|
11 |
+
Hola 🚀. Este es un Demo de modelo Segmentando imagenes
|
12 |
|
13 |
El modelo fue creado por [SerdarHelli](https://huggingface.co/SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net).
|
14 |
|
|
|
19 |
model_id = "SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net"
|
20 |
model = from_pretrained_keras(model_id)
|
21 |
|
22 |
+
## Permitimos al usuario cargar una imagen
|
23 |
archivo_imagen = st.file_uploader("Sube aquí tu imagen.", type=["png", "jpg", "jpeg"])
|
24 |
|
25 |
## Si una imagen tiene más de un canal entonces se convierte a escala de grises (1 canal)
|