Yuliang commited on
Commit
3df5b98
1 Parent(s): a4e7425

change display order

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -130,14 +130,14 @@ with gr.Blocks() as demo:
130
  with gr.Column():
131
  overlap_inp = gr.Image(
132
  type="filepath", label="Image Normal Overlap")
133
- out_smpl = gr.Model3D(
134
- clear_color=[0.0, 0.0, 0.0, 0.0], label="SMPL")
135
- out_smpl_download = gr.File(label="Download SMPL mesh")
136
- out_smpl_npy_download = gr.File(label="Download SMPL params")
137
  out_final = gr.Model3D(
138
  clear_color=[0.0, 0.0, 0.0, 0.0], label="Refined Recon")
139
  out_final_download = gr.File(
140
  label="Download refined clothed human mesh")
 
 
 
 
141
 
142
  out_lst = [out_smpl, out_smpl_download, out_smpl_npy_download,
143
  out_final, out_final_download, out_vid, out_vid_download, overlap_inp]
 
130
  with gr.Column():
131
  overlap_inp = gr.Image(
132
  type="filepath", label="Image Normal Overlap")
 
 
 
 
133
  out_final = gr.Model3D(
134
  clear_color=[0.0, 0.0, 0.0, 0.0], label="Refined Recon")
135
  out_final_download = gr.File(
136
  label="Download refined clothed human mesh")
137
+ out_smpl = gr.Model3D(
138
+ clear_color=[0.0, 0.0, 0.0, 0.0], label="SMPL")
139
+ out_smpl_download = gr.File(label="Download SMPL mesh")
140
+ out_smpl_npy_download = gr.File(label="Download SMPL params")
141
 
142
  out_lst = [out_smpl, out_smpl_download, out_smpl_npy_download,
143
  out_final, out_final_download, out_vid, out_vid_download, overlap_inp]