Spaces:
Running
on
Zero
Running
on
Zero
slothfulxtx
commited on
Commit
·
9432268
1
Parent(s):
b5a7730
update doc
Browse files
app.py
CHANGED
|
@@ -243,23 +243,25 @@ def infer_geometry(
|
|
| 243 |
|
| 244 |
def build_demo():
|
| 245 |
with gr.Blocks(analytics_enabled=False) as gradio_demo:
|
| 246 |
-
gr.
|
| 247 |
"""
|
| 248 |
<div align='center'>
|
| 249 |
<h1> GeometryCrafter: Consistent Geometry Estimation for Open-world Videos with Diffusion Priors </h1> \
|
| 250 |
-
<
|
| 251 |
<a href='https://scholar.google.com/citations?user=zHp0rMIAAAAJ'>Tian-Xing Xu</a>, \
|
| 252 |
<a href='https://scholar.google.com/citations?user=qgdesEcAAAAJ'>Xiangjun Gao</a>, \
|
| 253 |
<a href='https://wbhu.github.io'>Wenbo Hu</a>, \
|
| 254 |
<a href='https://xiaoyu258.github.io/'>Xiaoyu Li</a>, \
|
| 255 |
<a href='https://scholar.google.com/citations?user=AWtV-EQAAAAJ'>Song-Hai Zhang</a>,\
|
| 256 |
<a href='https://scholar.google.com/citations?user=4oXBp9UAAAAJ'>Ying Shan</a>\
|
| 257 |
-
</
|
|
|
|
|
|
|
| 258 |
<span style='font-size:18px'>If you find GeometryCrafter useful, please help ⭐ the \
|
| 259 |
<a style='font-size:18px' href='https://github.com/TencentARC/GeometryCrafter/'>[Github Repo]</a>\
|
| 260 |
, which is important to Open-Source projects. Thanks!\
|
| 261 |
-
<a
|
| 262 |
-
<a
|
| 263 |
</span>
|
| 264 |
</div>
|
| 265 |
"""
|
|
@@ -397,16 +399,16 @@ def build_demo():
|
|
| 397 |
],
|
| 398 |
# cache_examples="lazy",
|
| 399 |
)
|
| 400 |
-
gr.
|
| 401 |
"""
|
| 402 |
-
<span style='font-size:
|
| 403 |
-
For time quota consideration, we set the default parameters to be more efficient here
|
| 404 |
-
with a trade-off of shorter video length and slightly lower quality
|
| 405 |
-
You may adjust the parameters according to our
|
| 406 |
-
<a
|
| 407 |
-
for better results if you have enough time quota. We only provide a simplified visualization
|
| 408 |
-
script in this page due to the lack of support for point cloud sequences. You can download
|
| 409 |
-
the npz file and open it with Viser backend in our repo for better visualization.
|
| 410 |
</span>
|
| 411 |
"""
|
| 412 |
)
|
|
|
|
| 243 |
|
| 244 |
def build_demo():
|
| 245 |
with gr.Blocks(analytics_enabled=False) as gradio_demo:
|
| 246 |
+
gr.HTML(
|
| 247 |
"""
|
| 248 |
<div align='center'>
|
| 249 |
<h1> GeometryCrafter: Consistent Geometry Estimation for Open-world Videos with Diffusion Priors </h1> \
|
| 250 |
+
<span style='font-size:18px'>\
|
| 251 |
<a href='https://scholar.google.com/citations?user=zHp0rMIAAAAJ'>Tian-Xing Xu</a>, \
|
| 252 |
<a href='https://scholar.google.com/citations?user=qgdesEcAAAAJ'>Xiangjun Gao</a>, \
|
| 253 |
<a href='https://wbhu.github.io'>Wenbo Hu</a>, \
|
| 254 |
<a href='https://xiaoyu258.github.io/'>Xiaoyu Li</a>, \
|
| 255 |
<a href='https://scholar.google.com/citations?user=AWtV-EQAAAAJ'>Song-Hai Zhang</a>,\
|
| 256 |
<a href='https://scholar.google.com/citations?user=4oXBp9UAAAAJ'>Ying Shan</a>\
|
| 257 |
+
</span> \
|
| 258 |
+
<br>
|
| 259 |
+
<br>
|
| 260 |
<span style='font-size:18px'>If you find GeometryCrafter useful, please help ⭐ the \
|
| 261 |
<a style='font-size:18px' href='https://github.com/TencentARC/GeometryCrafter/'>[Github Repo]</a>\
|
| 262 |
, which is important to Open-Source projects. Thanks!\
|
| 263 |
+
<a href='https://arxiv.org'>[arXiv]</a> \
|
| 264 |
+
<a href='https://geometrycrafter.github.io'>[Project Page]</a> \
|
| 265 |
</span>
|
| 266 |
</div>
|
| 267 |
"""
|
|
|
|
| 399 |
],
|
| 400 |
# cache_examples="lazy",
|
| 401 |
)
|
| 402 |
+
gr.HTML(
|
| 403 |
"""
|
| 404 |
+
<span style='font-size:18px'>Note: \
|
| 405 |
+
For time quota consideration, we set the default parameters to be more efficient here,\
|
| 406 |
+
with a trade-off of shorter video length and slightly lower quality.\
|
| 407 |
+
You may adjust the parameters according to our \
|
| 408 |
+
<a href='https://github.com/TencentARC/GeometryCrafter/'>[Github Repo]</a>\
|
| 409 |
+
for better results if you have enough time quota. We only provide a simplified visualization\
|
| 410 |
+
script in this page due to the lack of support for point cloud sequences. You can download\
|
| 411 |
+
the npz file and open it with Viser backend in our repo for better visualization. \
|
| 412 |
</span>
|
| 413 |
"""
|
| 414 |
)
|