Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -41,9 +41,13 @@ def update_image_input(choice):
|
|
41 |
else:
|
42 |
return gr.update(visible=False), gr.update(visible=False), gr.update(visible=True)
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
47 |
|
48 |
with gr.Row():
|
49 |
image_mode = gr.Radio(["Two Images", "Multiple Images"], label="Image Upload Mode", value="Two Images")
|
|
|
41 |
else:
|
42 |
return gr.update(visible=False), gr.update(visible=False), gr.update(visible=True)
|
43 |
|
44 |
+
title = """<h1 align="center">Stitching</h1>
|
45 |
+
<p><center>"Upload images to create a panorama. Adjust parameters for better results."</center></p>
|
46 |
+
"""
|
47 |
+
|
48 |
+
with gr.Blocks(theme='bethecloud/storj_theme') as iface:
|
49 |
+
|
50 |
+
gr.HTML(title)
|
51 |
|
52 |
with gr.Row():
|
53 |
image_mode = gr.Radio(["Two Images", "Multiple Images"], label="Image Upload Mode", value="Two Images")
|