File size: 2,134 Bytes
d68bce6
 
e5ab32f
026fca1
e5ab32f
 
 
7edf35e
e5ab32f
 
 
 
 
 
0a0ddad
da66a3d
 
e5ab32f
 
 
da66a3d
 
e5ab32f
 
 
 
9485973
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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>
            <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!\
                <a href='https://arxiv.org'>[arXiv]</a> \
                <a href='https://geometrycrafter.github.io'>[Project Page]</a> \
            </span> 
        </div>
        """
    )
    gr.HTML(
        """
        <span style='font-size:18px'>Note: \
            For time quota consideration, we set the default parameters to be more efficient here,\
            with a trade-off of shorter video length and slightly lower quality.\
            You may adjust the parameters according to our \
            <a href='https://github.com/TencentARC/GeometryCrafter/'>[Github Repo]</a>\
            for better results if you have enough time quota. We only provide a simplified visualization\
            script in this page due to the lack of support for point cloud sequences. You can download\
            the npz file and open it with Viser backend in our repo for better visualization. \
        </span>
        """
    )
gradio_demo.launch(share=True)