demo / app.py
tianxingxu
init
8d90acf
raw
history blame
1.46 kB
import gradio as gr
with gr.Blocks(analytics_enabled=False) as gradio_demo:
gr.HTML(
"""
<div align='center'>
<h1> GeometryCrafter: Consistent Geometry Estimation for Open-world Videos with Diffusion Priors </h1> \
<span style='font-size:18px'>\
<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>\
</span> \
<br />
<span style='font-size:18px'> \
<a href='https://arxiv.org'>arXiv</a> \
<a href='https://geometrycrafter.github.io'>Project Page</a> \
</span> \
<br />
<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!\
</span>
</div>
"""
)
gradio_demo.launch(share=True)