kristyc commited on
Commit
6933f69
Β·
1 Parent(s): b897214

Update title and description

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +2 -0
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Hand & Finger Tracking w/ MediaPipe
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