Update app.py
Browse files
app.py
CHANGED
@@ -190,7 +190,7 @@ with gr.Blocks() as demo:
|
|
190 |
with gr.Row():
|
191 |
with gr.Column():
|
192 |
canvas = gr.Image(value = "./img.png", type="numpy", label="Draw Mask", show_label=True, height=LENGTH, width=LENGTH, interactive=True)
|
193 |
-
gr.Markdown("""<p style="text-align: left; font-size: 16px">Each image requires a single segmentation and optimization operation
|
194 |
|
195 |
with gr.Column():
|
196 |
result_info0 = gr.Text(label="Response")
|
@@ -314,7 +314,7 @@ with gr.Blocks() as demo:
|
|
314 |
gr.Info('Image editing completed.')
|
315 |
return load_pil_img()
|
316 |
|
317 |
-
example_inps = [['./img.png'],['./img2.png']]
|
318 |
gr.Examples(examples=example_inps, inputs=[canvas],
|
319 |
label='examples', cache_examples='lazy', outputs=[],
|
320 |
fn=change_image)
|
|
|
190 |
with gr.Row():
|
191 |
with gr.Column():
|
192 |
canvas = gr.Image(value = "./img.png", type="numpy", label="Draw Mask", show_label=True, height=LENGTH, width=LENGTH, interactive=True)
|
193 |
+
gr.Markdown("""<p style="text-align: left; font-size: 16px">Each image requires a single segmentation and optimization operation.<br>Afterwards, you can modify the mask ID and prompt for image editing. <br>The D-edit link is: https://arxiv.org/abs/2403.04880v2"</p>""")
|
194 |
|
195 |
with gr.Column():
|
196 |
result_info0 = gr.Text(label="Response")
|
|
|
314 |
gr.Info('Image editing completed.')
|
315 |
return load_pil_img()
|
316 |
|
317 |
+
example_inps = [['./img.png'],['./img2.png'],['./img3.png']]
|
318 |
gr.Examples(examples=example_inps, inputs=[canvas],
|
319 |
label='examples', cache_examples='lazy', outputs=[],
|
320 |
fn=change_image)
|