Update app.py
Browse files
app.py
CHANGED
@@ -175,34 +175,16 @@ with tempfile.TemporaryDirectory() as tmpdir:
|
|
175 |
gr.Markdown(
|
176 |
"""
|
177 |
# GenStereo: Towards Open-World Generation of Stereo Images and Unsupervised Matching
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
<img src="https://img.shields.io/badge/Project-Web-green" alt="Project Site">
|
182 |
-
</a>
|
183 |
-
<a href="https://huggingface.co/spaces/FQiao/GenStereo">
|
184 |
-
<img src="https://img.shields.io/badge/Spaces-Demo-yellow" alt="Spaces Demo" style="margin-left: 10px;">
|
185 |
-
</a>
|
186 |
-
<a href="https://github.com/Qjizhi/GenStereo">
|
187 |
-
<img src="https://img.shields.io/badge/Github-Repo-orange" alt="GitHub Repo" style="margin-left: 10px;">
|
188 |
-
</a>
|
189 |
-
<a href="https://huggingface.co/FQiao/GenStereo/tree/main">
|
190 |
-
<img src="https://img.shields.io/badge/Models-Checkpoints-blue" alt="Model Checkpoints" style="margin-left: 10px;">
|
191 |
-
</a>
|
192 |
-
<a href="https://arxiv.org/abs/2405.17251">
|
193 |
-
<img src="https://img.shields.io/badge/arXiv-2405.17251-red" alt="arXiv Paper" style="margin-left: 10px;">
|
194 |
-
</a>
|
195 |
-
</div>
|
196 |
-
|
197 |
## Introduction
|
198 |
-
This is an official demo for the paper "
|
199 |
-
|
200 |
## How to Use
|
201 |
-
|
202 |
1. Upload a reference image to "Left Image"
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
"""
|
207 |
)
|
208 |
file = gr.File(label='Left', file_types=['image'])
|
|
|
175 |
gr.Markdown(
|
176 |
"""
|
177 |
# GenStereo: Towards Open-World Generation of Stereo Images and Unsupervised Matching
|
178 |
+
|
179 |
+
[Project Web](https://qjizhi.github.io/genstereo) 路 [Spaces Demo](https://huggingface.co/spaces/FQiao/GenStereo) 路 [GitHub Repo](https://github.com/Qjizhi/GenStereo) 路 [Checkpoints](https://huggingface.co/FQiao/GenStereo/tree/main) 路 [Paper](https://arxiv.org/abs/2405.17251)
|
180 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
## Introduction
|
182 |
+
This is an official demo for the paper "GenStereo: Towards Open-World Generation of Stereo Images and Unsupervised Matching". Given an arbitrary reference image, GenStereo can generate the corresponding right-view image.
|
183 |
+
|
184 |
## How to Use
|
|
|
185 |
1. Upload a reference image to "Left Image"
|
186 |
+
- You can also select an image from "Examples"
|
187 |
+
2. Hit "Generate a right image" button and check the result
|
|
|
188 |
"""
|
189 |
)
|
190 |
file = gr.File(label='Left', file_types=['image'])
|