Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -278,18 +278,19 @@ with gr.Blocks(css=css) as demo:
|
|
278 |
|
279 |
status = gr.Textbox(label="Status", lines=6, interactive=True, value="Upload an image to start.")
|
280 |
|
281 |
-
with gr.
|
282 |
-
with gr.
|
283 |
-
with gr.
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
|
|
293 |
examples = gr.Examples(
|
294 |
examples=["example_images/jim_carrey.png", "example_images/margaret_qualley.png"],
|
295 |
inputs=[image_in],
|
|
|
278 |
|
279 |
status = gr.Textbox(label="Status", lines=6, interactive=True, value="Upload an image to start.")
|
280 |
|
281 |
+
with gr.Column():
|
282 |
+
with gr.Tabs():
|
283 |
+
with gr.Tab("Results"):
|
284 |
+
|
285 |
+
with gr.Row():
|
286 |
+
crop_img = gr.Image(label="Preprocessed", height=256)
|
287 |
+
normals_img = gr.Image(label="Normals", height=256)
|
288 |
+
with gr.Row():
|
289 |
+
uv_img = gr.Image(label="UV Map", height=256)
|
290 |
+
track_img = gr.Image(label="Tracking", height=256)
|
291 |
+
with gr.Tab("3D Model"):
|
292 |
+
mesh_file = gr.Model3D(label="3D Model Preview")
|
293 |
+
|
294 |
examples = gr.Examples(
|
295 |
examples=["example_images/jim_carrey.png", "example_images/margaret_qualley.png"],
|
296 |
inputs=[image_in],
|