Spaces:
Running
Running
File size: 1,444 Bytes
d68bce6 e5ab32f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import gradio as gr
with gr.Blocks(analytics_enabled=False) as gradio_demo:
gr.Markdown(
"""
<div align='center'>
<h1> GeometryCrafter: Consistent Geometry Estimation for Open-world Videos with Diffusion Priors </h1> \
<h2 style='font-weight: 450; font-size: 1rem; margin: 0rem'>\
<a href='https://scholar.google.com/citations?user=zHp0rMIAAAAJ'>Tian-Xing Xu</a>, \
<a href='https://scholar.google.com/citations?user=qgdesEcAAAAJ'>Xiangjun Gao</a>, \
<a href='https://wbhu.github.io'>Wenbo Hu</a>, \
<a href='https://xiaoyu258.github.io/'>Xiaoyu Li</a>, \
<a href='https://scholar.google.com/citations?user=AWtV-EQAAAAJ'>Song-Hai Zhang</a>,\
<a href='https://scholar.google.com/citations?user=4oXBp9UAAAAJ'>Ying Shan</a>\
</h2> \
<span style='font-size:18px'>If you find GeometryCrafter useful, please help ⭐ the \
<a style='font-size:18px' href='https://github.com/TencentARC/GeometryCrafter/'>[Github Repo]</a>\
, which is important to Open-Source projects. Thanks!\
<a style='font-size:18px' href='https://arxiv.org'> [ArXivTODO] </a>\
<a style='font-size:18px' href='https://geometrycrafter.github.io'> [Project Page] </a>
</span>
</div>
"""
)
gradio_demo.launch(share=True) |