Spaces:
Running
on
Zero
Running
on
Zero
Upload gradio_app.py with huggingface_hub
Browse files- gradio_app.py +17 -2
gradio_app.py
CHANGED
@@ -1,12 +1,27 @@
|
|
1 |
from instant_splat.gradio_ui.multi_img_ui import multi_img_block
|
2 |
import gradio as gr
|
3 |
|
4 |
-
title = "#
|
5 |
-
description1 = """
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
with gr.Blocks() as demo:
|
8 |
gr.Markdown(title)
|
9 |
gr.Markdown(description1)
|
|
|
10 |
with gr.Tab(label="Multi Image"):
|
11 |
multi_img_block.render()
|
12 |
|
|
|
1 |
from instant_splat.gradio_ui.multi_img_ui import multi_img_block
|
2 |
import gradio as gr
|
3 |
|
4 |
+
title = """# InstantSplat: Unofficial Demo of Sparse-view SfM-free Gaussian Splatting in Seconds"""
|
5 |
+
description1 = """
|
6 |
+
<a title="Website" href="https://instantsplat.github.io/" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
7 |
+
<img src="https://www.obukhov.ai/img/badges/badge-website.svg">
|
8 |
+
</a>
|
9 |
+
<a title="arXiv" href="https://arxiv.org/abs/2403.20309" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
10 |
+
<img src="https://www.obukhov.ai/img/badges/badge-pdf.svg">
|
11 |
+
</a>
|
12 |
+
<a title="Github" href="https://github.com/pablovela5620/InstantSplat" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
13 |
+
<img src="https://img.shields.io/github/stars/pablovela5620/InstantSplat?label=GitHub%20%E2%98%85&logo=github&color=C8C" alt="badge-github-stars">
|
14 |
+
</a>
|
15 |
+
<a title="Social" href="https://x.com/pablovelagomez1" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
16 |
+
<img src="https://www.obukhov.ai/img/badges/badge-social.svg" alt="social">
|
17 |
+
</a>
|
18 |
+
"""
|
19 |
+
description2 = "Using Rerun to visualize the results of InstantSplat"
|
20 |
|
21 |
with gr.Blocks() as demo:
|
22 |
gr.Markdown(title)
|
23 |
gr.Markdown(description1)
|
24 |
+
gr.Markdown(description2)
|
25 |
with gr.Tab(label="Multi Image"):
|
26 |
multi_img_block.render()
|
27 |
|