Spaces:
Sleeping
Sleeping
Nunzio commited on
Commit ·
43be5ef
1
Parent(s): a58a52c
added color
Browse files- app.py +11 -11
- prova.html +3 -0
app.py
CHANGED
|
@@ -12,12 +12,12 @@ turin_image_dir = "./preloadedImages/turin"
|
|
| 12 |
device = 'cuda' if torch.cuda.is_available() else 'cpu'
|
| 13 |
|
| 14 |
|
| 15 |
-
MODELS = {
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
}
|
| 21 |
|
| 22 |
image_list = loadPreloadedImages(gta_image_dir, city_image_dir, turin_image_dir)
|
| 23 |
|
|
@@ -85,15 +85,15 @@ with gr.Blocks(title="Semantic Segmentation Predictors") as demo:
|
|
| 85 |
with gr.Row():
|
| 86 |
with gr.Column(scale=1):
|
| 87 |
color_box0 = f"""<span style='display:inline-block; width:15px; height:15px;
|
| 88 |
-
background-color:rgb({legend[i][
|
| 89 |
-
gr.HTML(f"<
|
| 90 |
with gr.Column(scale=1):
|
| 91 |
if i + 1 < len(legend):
|
| 92 |
color_box1 = f"""<span style='display:inline-block; width:15px; height:15px;
|
| 93 |
-
background-color:rgb({legend[i+1][
|
| 94 |
-
gr.HTML(f"<
|
| 95 |
else:
|
| 96 |
-
gr.
|
| 97 |
|
| 98 |
|
| 99 |
with gr.Row():
|
|
|
|
| 12 |
device = 'cuda' if torch.cuda.is_available() else 'cpu'
|
| 13 |
|
| 14 |
|
| 15 |
+
# MODELS = {
|
| 16 |
+
# "BISENET-BASE": loadModel('bisenet', device, 'weight_Base.pth'),
|
| 17 |
+
# "BISENET-BEST": loadModel('bisenet', device, 'weight_Best.pth'),
|
| 18 |
+
# "BISENETV2-BASE": loadModel('bisenetv2', device, 'weight_Base.pth'),
|
| 19 |
+
# "BISENETV2-BEST": loadModel('bisenetv2', device, 'weight_Best.pth')
|
| 20 |
+
# }
|
| 21 |
|
| 22 |
image_list = loadPreloadedImages(gta_image_dir, city_image_dir, turin_image_dir)
|
| 23 |
|
|
|
|
| 85 |
with gr.Row():
|
| 86 |
with gr.Column(scale=1):
|
| 87 |
color_box0 = f"""<span style='display:inline-block; width:15px; height:15px;
|
| 88 |
+
background-color:rgb({legend[i][3][0]},{legend[i][3][1]},{legend[i][3][2]}); margin-left:6px; border:1px solid #000;'></span>"""
|
| 89 |
+
gr.HTML(f"<b>{legend[i][1]}</b> → {legend[i][2]} {color_box0}")
|
| 90 |
with gr.Column(scale=1):
|
| 91 |
if i + 1 < len(legend):
|
| 92 |
color_box1 = f"""<span style='display:inline-block; width:15px; height:15px;
|
| 93 |
+
background-color:rgb({legend[i+1][3][0]},{legend[i+1][3][1]},{legend[i+1][3][2]}); margin-left:6px; border:1px solid #000;'></span>"""
|
| 94 |
+
gr.HTML(f"<b>{legend[i+1][1]}</b> → {legend[i+1][2]} {color_box1}")
|
| 95 |
else:
|
| 96 |
+
gr.Markdown("") # Keeps spacing consistent if list is odd
|
| 97 |
|
| 98 |
|
| 99 |
with gr.Row():
|
prova.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<span style='display:inline-block; width:15px; height:15px;
|
| 2 |
+
background-color:rgb(255,0,0); margin-left:6px;
|
| 3 |
+
border:1px solid #000;'></span>
|