gokaygokay commited on
Commit
1e56a95
·
verified ·
1 Parent(s): 0bdaad7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
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
- with gr.Blocks() as iface:
45
- gr.Markdown("# Advanced Image Stitcher")
46
- gr.Markdown("Upload images to create a panorama. Adjust parameters for better results.")
 
 
 
 
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")