onescotch commited on
Commit
fdb9ee6
1 Parent(s): a72e32a

update page notes

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -72,7 +72,7 @@ DESCRIPTION = '''
72
  <b>Official Gradio demo</b> for <a href="https://caizhongang.com/projects/SMPLer-X/"><b>SMPLer-X: Scaling Up Expressive Human Pose and Shape Estimation</b></a>.<br>
73
  <p>
74
  Note: You can drop a video at the panel (or select one of the examples)
75
- then you will get the 3D reconstructions of the detected human. ).
76
  </p>
77
  '''
78
 
@@ -96,8 +96,8 @@ with gr.Blocks(title="SMPLer-X", css=".gradio-container") as demo:
96
  scale=1,)
97
  gr.HTML("""<br/>""")
98
  mesh_as_vertices = gr.Checkbox(
99
- label="Render mesh",
100
- info="By default, the reconstructions of human bodies are expressed as vertices for faster inference. Check this option if you want to render the human body with mesh.",
101
  interactive=True,
102
  scale=1,)
103
 
 
72
  <b>Official Gradio demo</b> for <a href="https://caizhongang.com/projects/SMPLer-X/"><b>SMPLer-X: Scaling Up Expressive Human Pose and Shape Estimation</b></a>.<br>
73
  <p>
74
  Note: You can drop a video at the panel (or select one of the examples)
75
+ to obtain the 3D parametric reconstructions of the detected humans.
76
  </p>
77
  '''
78
 
 
96
  scale=1,)
97
  gr.HTML("""<br/>""")
98
  mesh_as_vertices = gr.Checkbox(
99
+ label="Render as mesh",
100
+ info="By default, the estimated SMPL-X parameters are rendered as vertices for faster visualization. Check this option if you want to visualize meshes instead.",
101
  interactive=True,
102
  scale=1,)
103