awacke1 commited on
Commit
3857dc1
·
1 Parent(s): b5803ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -27
app.py CHANGED
@@ -1,30 +1,16 @@
1
  import streamlit as st
2
  st.markdown("""
3
-
4
- # MediaPipe
5
-
6
- ### A cross language SDK for AI that is real time, 3d, camera responsive, and on any device for nearly any language
7
-
8
- #### Vision
9
- #### Natural Language
10
- #### Audio
11
-
12
- Mediapipe has fast and flexible AI/ML pipelines.
13
-
14
- Examples with Javascript Links!
15
-
16
  1. Image Classifier: https://mediapipe-studio.webapps.google.com/demo/image_classifier
17
  2. Object Detector: https://mediapipe-studio.webapps.google.com/demo/object_detector
18
  3. Text Classification: https://mediapipe-studio.webapps.google.com/demo/text_classifier
19
  4. Gesture Recognizer: https://mediapipe-studio.webapps.google.com/demo/gesture_recognizer
20
  5. Hand Landmark Detection: https://mediapipe-studio.webapps.google.com/demo/hand_landmarker
21
  6. Audio Classifier: https://mediapipe-studio.webapps.google.com/demo/audio_classifier
22
-
23
- Get started with just Javascript!!
24
-
25
  Getting Started: https://google.github.io/mediapipe/getting_started/javascript.html
26
 
27
- Javascript Solutions - Ready to Demo:
28
  1. Face Mesh: https://codepen.io/mediapipe/full/KKgVaPJ
29
  2. Face Detection: https://codepen.io/mediapipe/full/dyOzvZM
30
  3. Hands: https://codepen.io/mediapipe/full/RwGWYJw
@@ -33,27 +19,23 @@ Javascript Solutions - Ready to Demo:
33
  6. Full Skeletal Pose: https://codepen.io/mediapipe/full/jOMbvxw
34
  7. Self Segmentation From Background: https://codepen.io/mediapipe/full/wvJyQpq
35
 
36
-
37
  Demonstration in Action with Screenshots:
38
-
39
- Self Segmentation From Background:
40
  ![image](https://user-images.githubusercontent.com/30595158/225767564-786928a3-7c91-4df1-babb-0cc4c2b71460.png)
41
 
42
- Full Skeletal Pose:
43
  ![image](https://user-images.githubusercontent.com/30595158/225767721-6f088349-3f56-41b3-85d4-98f2456dc165.png)
44
 
45
- Hands - Both in 3D Projection even hidden surface vertices - Mahalo:
46
  ![image](https://user-images.githubusercontent.com/30595158/225767970-0e1000e8-72a8-4276-a6f0-ccfcd3ac6d72.png)
47
 
48
- Holistic - Face, Hands, Body:
49
  ![image](https://user-images.githubusercontent.com/30595158/225768092-2cb4a144-7033-46b1-a476-3e0ec376eb36.png)
50
 
51
- Face Detection:
52
  ![image](https://user-images.githubusercontent.com/30595158/225768256-c97c0f62-6ef9-4c7e-aa41-8eaf4f344a3d.png)
53
 
54
- Face Mesh Real Time - 30 Frames per second!
55
  ![image](https://user-images.githubusercontent.com/30595158/225768360-c64197ff-919f-47a9-8cc0-c6d5e73e5853.png)
56
 
57
-
58
-
59
  """)
 
1
  import streamlit as st
2
  st.markdown("""
3
+ #### MediaPipe - A cross language SDK for AI that is real time, 3d, camera responsive, and on any device for nearly any language
4
+ Mediapipe has fast and flexible AI/ML pipelines. Below are Examples with Javascript Links!
 
 
 
 
 
 
 
 
 
 
 
5
  1. Image Classifier: https://mediapipe-studio.webapps.google.com/demo/image_classifier
6
  2. Object Detector: https://mediapipe-studio.webapps.google.com/demo/object_detector
7
  3. Text Classification: https://mediapipe-studio.webapps.google.com/demo/text_classifier
8
  4. Gesture Recognizer: https://mediapipe-studio.webapps.google.com/demo/gesture_recognizer
9
  5. Hand Landmark Detection: https://mediapipe-studio.webapps.google.com/demo/hand_landmarker
10
  6. Audio Classifier: https://mediapipe-studio.webapps.google.com/demo/audio_classifier
 
 
 
11
  Getting Started: https://google.github.io/mediapipe/getting_started/javascript.html
12
 
13
+ Solution Demonstrations:
14
  1. Face Mesh: https://codepen.io/mediapipe/full/KKgVaPJ
15
  2. Face Detection: https://codepen.io/mediapipe/full/dyOzvZM
16
  3. Hands: https://codepen.io/mediapipe/full/RwGWYJw
 
19
  6. Full Skeletal Pose: https://codepen.io/mediapipe/full/jOMbvxw
20
  7. Self Segmentation From Background: https://codepen.io/mediapipe/full/wvJyQpq
21
 
 
22
  Demonstration in Action with Screenshots:
23
+ 1. Self Segmentation From Background:
 
24
  ![image](https://user-images.githubusercontent.com/30595158/225767564-786928a3-7c91-4df1-babb-0cc4c2b71460.png)
25
 
26
+ 2. Full Skeletal Pose:
27
  ![image](https://user-images.githubusercontent.com/30595158/225767721-6f088349-3f56-41b3-85d4-98f2456dc165.png)
28
 
29
+ 3. Hands - Both in 3D Projection even hidden surface vertices - Mahalo:
30
  ![image](https://user-images.githubusercontent.com/30595158/225767970-0e1000e8-72a8-4276-a6f0-ccfcd3ac6d72.png)
31
 
32
+ 4. Holistic - Face, Hands, Body:
33
  ![image](https://user-images.githubusercontent.com/30595158/225768092-2cb4a144-7033-46b1-a476-3e0ec376eb36.png)
34
 
35
+ 5. Face Detection:
36
  ![image](https://user-images.githubusercontent.com/30595158/225768256-c97c0f62-6ef9-4c7e-aa41-8eaf4f344a3d.png)
37
 
38
+ 6. Face Mesh Real Time - 30 Frames per second!
39
  ![image](https://user-images.githubusercontent.com/30595158/225768360-c64197ff-919f-47a9-8cc0-c6d5e73e5853.png)
40
 
 
 
41
  """)