Spaces:
Running
on
L40S
Running
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -125,13 +125,17 @@ def gradio_interface():
|
|
125 |
gr.Markdown("# PSHuman: Photorealistic Single-image 3D Human Reconstruction using Cross-Scale Multiview Diffusion and Explicit Remeshing")
|
126 |
|
127 |
with gr.Row():
|
128 |
-
input_image = gr.Image(
|
|
|
|
|
|
|
|
|
129 |
with gr.Column():
|
130 |
submit_button = gr.Button("Process")
|
131 |
gr.Examples(
|
132 |
examples = examples_folder,
|
133 |
inputs = [input_image],
|
134 |
-
examples_per_page =
|
135 |
)
|
136 |
|
137 |
output_video= gr.Video(label="Output Video")
|
|
|
125 |
gr.Markdown("# PSHuman: Photorealistic Single-image 3D Human Reconstruction using Cross-Scale Multiview Diffusion and Explicit Remeshing")
|
126 |
|
127 |
with gr.Row():
|
128 |
+
input_image = gr.Image(
|
129 |
+
label="Image input",
|
130 |
+
type="filepath",
|
131 |
+
height=240
|
132 |
+
)
|
133 |
with gr.Column():
|
134 |
submit_button = gr.Button("Process")
|
135 |
gr.Examples(
|
136 |
examples = examples_folder,
|
137 |
inputs = [input_image],
|
138 |
+
examples_per_page = 6
|
139 |
)
|
140 |
|
141 |
output_video= gr.Video(label="Output Video")
|