sjtu-deepvision commited on
Commit
7c72554
·
verified ·
1 Parent(s): 59880dc

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -66,9 +66,14 @@ def create_gradio_interface():
66
  example_images = [
67
  os.path.join("files", "image", f"{i}.png") for i in range(1, 9)
68
  ]
 
 
 
 
69
 
70
  with gr.Blocks() as demo:
71
- gr.Markdown("# Dereflection Any Image")
 
72
  with gr.Row():
73
  with gr.Column():
74
  input_image = gr.Image(label="Input Image", type="numpy")
 
66
  example_images = [
67
  os.path.join("files", "image", f"{i}.png") for i in range(1, 9)
68
  ]
69
+ title = "# Dereflection Any Image"
70
+ description = """Official demo for **Dereflection Any Image**.
71
+ Please refer to our [paper](), [project page](https://abuuu122.github.io/DAI.github.io/), and [github](https://github.com/Abuuu122/Dereflection-Any-Image) for more details."""
72
+
73
 
74
  with gr.Blocks() as demo:
75
+ gr.Markdown(title)
76
+ gr.Markdown(description)
77
  with gr.Row():
78
  with gr.Column():
79
  input_image = gr.Image(label="Input Image", type="numpy")