Spaces:
Sleeping
Sleeping
Colin Leong
commited on
Commit
·
77ef1b5
1
Parent(s):
61f1b91
Add an output for reduce_holistic
Browse files
app.py
CHANGED
|
@@ -171,6 +171,9 @@ if uploaded_file is not None:
|
|
| 171 |
]
|
| 172 |
points_dict = {"FACE_LANDMARKS": FACEMESH_CONTOURS_POINTS}
|
| 173 |
|
|
|
|
|
|
|
|
|
|
| 174 |
elif component_selection == "youtube-asl":
|
| 175 |
st.write("Selected landmarks used for [YouTube-ASL](https://arxiv.org/pdf/2306.15162).")
|
| 176 |
# https://arxiv.org/pdf/2306.15162
|
|
@@ -241,7 +244,7 @@ if uploaded_file is not None:
|
|
| 241 |
# not in the list
|
| 242 |
# st.write(f"Point {additional_point} not in file")
|
| 243 |
pass
|
| 244 |
-
|
| 245 |
|
| 246 |
|
| 247 |
# Filter button logic
|
|
|
|
| 171 |
]
|
| 172 |
points_dict = {"FACE_LANDMARKS": FACEMESH_CONTOURS_POINTS}
|
| 173 |
|
| 174 |
+
elif component_selection == "reduce_holistic":
|
| 175 |
+
st.write("Using [pose_format.utils.generic.reduce_holistic](https://github.com/sign-language-processing/pose/blob/master/src/python/pose_format/utils/generic.py#L286)")
|
| 176 |
+
|
| 177 |
elif component_selection == "youtube-asl":
|
| 178 |
st.write("Selected landmarks used for [YouTube-ASL](https://arxiv.org/pdf/2306.15162).")
|
| 179 |
# https://arxiv.org/pdf/2306.15162
|
|
|
|
| 244 |
# not in the list
|
| 245 |
# st.write(f"Point {additional_point} not in file")
|
| 246 |
pass
|
| 247 |
+
|
| 248 |
|
| 249 |
|
| 250 |
# Filter button logic
|