awacke1 commited on
Commit
dd54410
1 Parent(s): f5ab8fb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -0
app.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
+ 4. Face, Hands, Body: https://codepen.io/mediapipe/full/LYRRYEw
32
+ 5. Objectron: https://codepen.io/mediapipe/full/BaWvzdY
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
+ """)