Siyun He commited on
Commit
2839b00
·
1 Parent(s): b36cf01

update gradio interface

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -115,6 +115,8 @@ with gr.Blocks() as demo:
115
 
116
  generate_button = gr.Button("Generate Anaglyph Image")
117
  generate_button.click(process_images, [person_image, stereo_image, depth_level, x_position, y_position], output_image)
 
 
118
 
119
  # Launch the app
120
  demo.launch()
 
115
 
116
  generate_button = gr.Button("Generate Anaglyph Image")
117
  generate_button.click(process_images, [person_image, stereo_image, depth_level, x_position, y_position], output_image)
118
+ # Add reminder text below the button
119
+ gr.Markdown("**Reminder:** After adjusting the depth level or position, click the 'Generate Anaglyph Image' button to update the image.")
120
 
121
  # Launch the app
122
  demo.launch()