Ariel commited on
Commit
4f77eb4
·
1 Parent(s): 006608e
Files changed (1) hide show
  1. app.py +6 -8
app.py CHANGED
@@ -1,23 +1,21 @@
1
  import gradio as gr
2
- from PIL import Image
3
  import os
4
  from SolarPanelDetector import solar_panel_predict, detector
5
 
 
6
  custom_css = """
7
  .feedback textarea {font-size: 20px !important;}
8
  .centered-text {text-align: center; width: 100%;}
 
9
  """
 
10
 
11
  with gr.Blocks(theme="HaleyCH/HaleyCH_Theme", title="Solar Panel Detector", css=custom_css) as app:
12
  # add logo
13
  gr.Markdown("# **Solar Panel Detector 2.0** 🛰️☀️", elem_classes="centered-text")
14
- with gr.Column(scale=1, variant="default"):
15
- gr.HTML("""
16
- <div style='display: flex; justify-content: center; align-items: center; height: 100%;'>
17
- <img src='https://github.com/ArielDrabkin/Solar-Panel-Detector/blob/master/deployment/examples/DALL-E.jpeg?raw=true'
18
- height='350' width='700'/>
19
- </div>
20
- """)
21
  gr.Markdown("## This app provides the ability to detect solar panels in a given address or a given image.")
22
 
23
  gr.Markdown("### Using by address with google maps:\n1. Enter an address or geographic coordinates.\n"
 
1
  import gradio as gr
 
2
  import os
3
  from SolarPanelDetector import solar_panel_predict, detector
4
 
5
+
6
  custom_css = """
7
  .feedback textarea {font-size: 20px !important;}
8
  .centered-text {text-align: center; width: 100%;}
9
+ .center-image {display: flex; justify-content: center; align-items: center;}
10
  """
11
+ logo_url = 'https://raw.githubusercontent.com/ArielDrabkin/Solar-Panel-Detector/master/deployment/examples/DALL-E.jpeg'
12
 
13
  with gr.Blocks(theme="HaleyCH/HaleyCH_Theme", title="Solar Panel Detector", css=custom_css) as app:
14
  # add logo
15
  gr.Markdown("# **Solar Panel Detector 2.0** 🛰️☀️", elem_classes="centered-text")
16
+ # Create an image component
17
+ with gr.Row(elem_classes="center-image"):
18
+ gr.Image(logo_url, scale=1, height=350, width=700, show_label=False, show_download_button=False)
 
 
 
 
19
  gr.Markdown("## This app provides the ability to detect solar panels in a given address or a given image.")
20
 
21
  gr.Markdown("### Using by address with google maps:\n1. Enter an address or geographic coordinates.\n"