Spaces:
Running
Running
Colin Leong
commited on
Commit
•
247b8a5
1
Parent(s):
646119e
CDL: update the intro text a bit
Browse files
app.py
CHANGED
@@ -94,8 +94,10 @@ def get_pose_gif(pose:Pose, step:int=1, fps:int=None):
|
|
94 |
frames = frames[::step]
|
95 |
return v.save_gif(None,frames=frames)
|
96 |
|
97 |
-
|
98 |
-
|
|
|
|
|
99 |
|
100 |
|
101 |
|
|
|
94 |
frames = frames[::step]
|
95 |
return v.save_gif(None,frames=frames)
|
96 |
|
97 |
+
st.write("# Pose-format explorer")
|
98 |
+
st.write("`pose-format` is a toolkit/library for 'handling, manipulation, and visualization of poses'. See [The documentation](https://pose-format.readthedocs.io/en/latest/)"
|
99 |
+
st.write("I made this app to help me visualize and understand the format, including different 'components' and 'points', and what they are named.")
|
100 |
+
uploaded_file = st.file_uploader("Upload a .pose file", type=[".pose", ".pose.zst"])
|
101 |
|
102 |
|
103 |
|