Spaces:
Runtime error
Runtime error
Update title and description
Browse files
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: Hand & Finger Tracking
|
3 |
emoji: π
|
4 |
colorFrom: pink
|
5 |
colorTo: purple
|
|
|
1 |
---
|
2 |
+
title: Hand & Finger Tracking
|
3 |
emoji: π
|
4 |
colorFrom: pink
|
5 |
colorTo: purple
|
app.py
CHANGED
@@ -19,6 +19,8 @@ connections = {
|
|
19 |
'HAND_PINKY_FINGER_CONNECTIONS': mp_hands_connections.HAND_PINKY_FINGER_CONNECTIONS,
|
20 |
}
|
21 |
|
|
|
|
|
22 |
draw_background = st.checkbox("Draw background", value=True)
|
23 |
selected_connection = st.selectbox("Select connections to draw", list(connections.keys()))
|
24 |
|
|
|
19 |
'HAND_PINKY_FINGER_CONNECTIONS': mp_hands_connections.HAND_PINKY_FINGER_CONNECTIONS,
|
20 |
}
|
21 |
|
22 |
+
st.title('Hand & Finger Tracking')
|
23 |
+
st.markdown("This is a demo of hand and finger tracking using [Google's MediaPipe](https://google.github.io/mediapipe/solutions/hands.html).")
|
24 |
draw_background = st.checkbox("Draw background", value=True)
|
25 |
selected_connection = st.selectbox("Select connections to draw", list(connections.keys()))
|
26 |
|