Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,14 +12,16 @@ def predict(path:str):
|
|
| 12 |
|
| 13 |
for r in results:
|
| 14 |
return r.plot()
|
| 15 |
-
|
|
|
|
|
|
|
| 16 |
css = """
|
| 17 |
.gradio-container {
|
| 18 |
background-color: #ADD8E6; /* Fondo azul claro */
|
| 19 |
-
background-image: url(
|
| 20 |
-
url(
|
| 21 |
-
url(
|
| 22 |
-
url(
|
| 23 |
background-position: top left, top right, bottom left, bottom right;
|
| 24 |
background-repeat: no-repeat;
|
| 25 |
}
|
|
|
|
| 12 |
|
| 13 |
for r in results:
|
| 14 |
return r.plot()
|
| 15 |
+
|
| 16 |
+
image_url = "https://huggingface.co/spaces/Jass0117/test/blob/main/diente.jpg"
|
| 17 |
+
|
| 18 |
css = """
|
| 19 |
.gradio-container {
|
| 20 |
background-color: #ADD8E6; /* Fondo azul claro */
|
| 21 |
+
background-image: url('{image_url}'),
|
| 22 |
+
url('{image_url}'),
|
| 23 |
+
url('{image_url}'),
|
| 24 |
+
url('{image_url}');
|
| 25 |
background-position: top left, top right, bottom left, bottom right;
|
| 26 |
background-repeat: no-repeat;
|
| 27 |
}
|