Update app.py
Browse files
app.py
CHANGED
@@ -50,10 +50,10 @@ def inference(LR, Ref):
|
|
50 |
return "result/0000.png"
|
51 |
|
52 |
title="RefVSR"
|
53 |
-
description="Demo application for Reference-based Video Super-Resolution.
|
54 |
|
55 |
article = "<p style='text-align: center'><a href='https://junyonglee.me/projects/RefVSR' target='_blank'>Project</a> | <a href='https://arxiv.org/abs/2203.14537' target='_blank'>arXiv</a> | <a href='https://github.com/codeslake/RefVSR' target='_blank'>Github</a></p>"
|
56 |
|
57 |
-
examples=[['LR.png'
|
58 |
|
59 |
gr.Interface(inference,[gr.inputs.Image(type="pil"), gr.inputs.Image(type="pil")],gr.outputs.Image(type="file"),title=title,description=description,article=article,theme ="peach",examples=examples).launch(enable_queue=True)
|
|
|
50 |
return "result/0000.png"
|
51 |
|
52 |
title="RefVSR"
|
53 |
+
description="Demo application for Reference-based Video Super-Resolution. Upload a low-resolution frame and a reference frame to 'LR' and 'Ref' input windows, respectively."
|
54 |
|
55 |
article = "<p style='text-align: center'><a href='https://junyonglee.me/projects/RefVSR' target='_blank'>Project</a> | <a href='https://arxiv.org/abs/2203.14537' target='_blank'>arXiv</a> | <a href='https://github.com/codeslake/RefVSR' target='_blank'>Github</a></p>"
|
56 |
|
57 |
+
examples=[['LR.png', 'Ref.png']]
|
58 |
|
59 |
gr.Interface(inference,[gr.inputs.Image(type="pil"), gr.inputs.Image(type="pil")],gr.outputs.Image(type="file"),title=title,description=description,article=article,theme ="peach",examples=examples).launch(enable_queue=True)
|