alexnasa commited on
Commit
396f14e
·
verified ·
1 Parent(s): 14320b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -13
app.py CHANGED
@@ -321,19 +321,14 @@ with gr.Blocks(css=css) as demo:
321
  status = gr.Textbox(label="Status", lines=6, interactive=True, value="Upload an image to start.")
322
 
323
  with gr.Column():
324
- with gr.Tabs():
325
- with gr.Tab("Results"):
326
-
327
- with gr.Row():
328
- crop_img = gr.Image(label="Preprocessed", height=256)
329
- normals_img = gr.Image(label="Normals", height=256)
330
- with gr.Row():
331
- uv_img = gr.Image(label="UV Map", height=256)
332
- track_img = gr.Image(label="Tracking", height=256)
333
- with gr.Tab("3D Model"):
334
- with gr.Column():
335
- mesh_file = gr.Model3D(label="3D Model Preview", height=512)
336
-
337
  examples = gr.Examples(
338
  examples=[
339
  ["example_images/jennifer_lawrence.png"],
 
321
  status = gr.Textbox(label="Status", lines=6, interactive=True, value="Upload an image to start.")
322
 
323
  with gr.Column():
324
+ mesh_file = gr.Model3D(label="3D Model Preview", height=512)
325
+
326
+ with gr.Row():
327
+ crop_img = gr.Image(label="Preprocessed", height=128)
328
+ normals_img = gr.Image(label="Normals", height=128)
329
+ uv_img = gr.Image(label="UV Map", height=128)
330
+ track_img = gr.Image(label="Tracking", height=128)
331
+
 
 
 
 
 
332
  examples = gr.Examples(
333
  examples=[
334
  ["example_images/jennifer_lawrence.png"],