Spaces:
Running
on
Zero
Running
on
Zero
xinjie.wang
commited on
Commit
·
37b4bf9
1
Parent(s):
22079fc
update
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def greet(n):
|
|
43 |
with gr.Blocks(
|
44 |
delete_cache=(43200, 43200)
|
45 |
) as demo:
|
46 |
-
with gr.Column(
|
47 |
video_output = gr.Video(
|
48 |
label="Generated 3D Asset",
|
49 |
autoplay=True,
|
@@ -56,12 +56,13 @@ with gr.Blocks(
|
|
56 |
)
|
57 |
aligned_gs = gr.Textbox(visible=False)
|
58 |
|
59 |
-
model_output_mesh = LitModel3D(
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
)
|
|
|
65 |
gr.Markdown(
|
66 |
""" The rendering of `Gaussian Representation` takes additional 10s. """ # noqa
|
67 |
)
|
|
|
43 |
with gr.Blocks(
|
44 |
delete_cache=(43200, 43200)
|
45 |
) as demo:
|
46 |
+
with gr.Column():
|
47 |
video_output = gr.Video(
|
48 |
label="Generated 3D Asset",
|
49 |
autoplay=True,
|
|
|
56 |
)
|
57 |
aligned_gs = gr.Textbox(visible=False)
|
58 |
|
59 |
+
# model_output_mesh = LitModel3D(
|
60 |
+
# # label="Mesh Representation",
|
61 |
+
# # height=300,
|
62 |
+
# # exposure=10,
|
63 |
+
# # interactive=False
|
64 |
+
# )
|
65 |
+
model_output_mesh = LitModel3D(label="Extracted GLB/Gaussian", exposure=10.0, height=300)
|
66 |
gr.Markdown(
|
67 |
""" The rendering of `Gaussian Representation` takes additional 10s. """ # noqa
|
68 |
)
|