Update app.py
Browse files
app.py
CHANGED
|
@@ -108,6 +108,8 @@ with gr.Blocks(css=css) as demo:
|
|
| 108 |
with gr.Column():
|
| 109 |
outputs=gr.Video(label="Output Video",interactive=False),
|
| 110 |
title="Image Chain Morphing App",
|
|
|
|
|
|
|
| 111 |
|
| 112 |
files.upload(fn=swap_to_gallery, inputs=files, outputs=[files, clear_button, files])
|
| 113 |
remove_and_reupload.click(fn=remove_back_to_files, outputs=[files, clear_button, files])
|
|
|
|
| 108 |
with gr.Column():
|
| 109 |
outputs=gr.Video(label="Output Video",interactive=False),
|
| 110 |
title="Image Chain Morphing App",
|
| 111 |
+
with gr.Column():
|
| 112 |
+
gallery = gr.Gallery(label="Generated Images")
|
| 113 |
|
| 114 |
files.upload(fn=swap_to_gallery, inputs=files, outputs=[files, clear_button, files])
|
| 115 |
remove_and_reupload.click(fn=remove_back_to_files, outputs=[files, clear_button, files])
|