Spaces:
Runtime error
Runtime error
add pose image reuse description
Browse files
app.py
CHANGED
@@ -131,6 +131,9 @@ with gr.Blocks(css="""button { min-width: 80px; }""") as demo:
|
|
131 |
|
132 |
#### Points to note for pseudo-3D rotation
|
133 |
When performing pseudo-3D rotation on the X and Y axes, the projection is converted to 2D and Z-axis information is lost when the mouse button is released. This means that if you finish dragging while the shape is collapsed, you may not be able to restore it to its original state. In such a case, please use the "undo" function.
|
|
|
|
|
|
|
134 |
""")
|
135 |
with gr.Column(scale=2):
|
136 |
html = gr.HTML(html_text)
|
|
|
131 |
|
132 |
#### Points to note for pseudo-3D rotation
|
133 |
When performing pseudo-3D rotation on the X and Y axes, the projection is converted to 2D and Z-axis information is lost when the mouse button is released. This means that if you finish dragging while the shape is collapsed, you may not be able to restore it to its original state. In such a case, please use the "undo" function.
|
134 |
+
|
135 |
+
#### Reuse pose image
|
136 |
+
Pose image generated by this tool has pose data in the image itself. You can reuse pose information by loading it as the image source instead of a regular image.
|
137 |
""")
|
138 |
with gr.Column(scale=2):
|
139 |
html = gr.HTML(html_text)
|