Update app.py
Browse files
app.py
CHANGED
@@ -1,41 +1,32 @@
|
|
1 |
import streamlit as st
|
2 |
st.markdown("""
|
3 |
-
#### MediaPipe
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-

|
28 |
-
|
29 |
-
|
30 |
-

|
34 |
-
|
35 |
-
5. Face Detection:
|
36 |
-

|
37 |
-
|
38 |
-
6. Face Mesh Real Time - 30 Frames per second!
|
39 |
-

|
40 |
-
|
41 |
-
""")
|
|
|
1 |
import streamlit as st
|
2 |
st.markdown("""
|
3 |
+
#### MediaPipe Overview ๐
|
4 |
+
MediaPipe: Real-time, 3D, cross-platform AI/ML SDK. Versatile for many languages and devices.
|
5 |
+
|
6 |
+
#### AI/ML Examples with JavaScript Links ๐
|
7 |
+
1. ๐ผ๏ธ Image Classifier: [Link](https://mediapipe-studio.webapps.google.com/demo/image_classifier)
|
8 |
+
2. ๐งฑ Object Detector: [Link](https://mediapipe-studio.webapps.google.com/demo/object_detector)
|
9 |
+
3. ๐ Text Classifier: [Link](https://mediapipe-studio.webapps.google.com/demo/text_classifier)
|
10 |
+
4. ๐ Gesture Recognizer: [Link](https://mediapipe-studio.webapps.google.com/demo/gesture_recognizer)
|
11 |
+
5. ๐ค Hand Landmarks: [Link](https://mediapipe-studio.webapps.google.com/demo/hand_landmarker)
|
12 |
+
6. ๐ต Audio Classifier: [Link](https://mediapipe-studio.webapps.google.com/demo/audio_classifier)
|
13 |
+
|
14 |
+
๐ Getting Started: [link](https://google.github.io/mediapipe/getting_started/javascript.html)
|
15 |
+
|
16 |
+
#### ๐ฅ Solution Demonstrations
|
17 |
+
1. ๐ Face Mesh: [link](https://codepen.io/mediapipe/full/KKgVaPJ)
|
18 |
+
2. ๐ Face Detection: [link](https://codepen.io/mediapipe/full/dyOzvZM)
|
19 |
+
3. ๐คฒ Hands: [link](https://codepen.io/mediapipe/full/RwGWYJw)
|
20 |
+
4. ๐คธโโ๏ธ Holistic (Face, Hands, Body): [link](https://codepen.io/mediapipe/full/LYRRYEw)
|
21 |
+
5. ๐ฆ Objectron: [link](https://codepen.io/mediapipe/full/BaWvzdY)
|
22 |
+
6. ๐บ Full Skeletal Pose: [link](https://codepen.io/mediapipe/full/jOMbvxw)
|
23 |
+
7. ๐ค Self Segmentation: [link](https://codepen.io/mediapipe/full/wvJyQpq)
|
24 |
+
|
25 |
+
#### ๐ผ๏ธ Demonstrations with Screenshots
|
26 |
+
1. ๐ค Self Segmentation: 
|
27 |
+
2. ๐บ Full Skeletal Pose: 
|
28 |
+
3. ๐คฒ Hands in 3D: 
|
29 |
+
4. ๐คธโโ๏ธ Holistic View: 
|
30 |
+
5. ๐ Face Detection: 
|
31 |
+
6. ๐ Face Mesh (30 FPS): 
|
32 |
+
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|