Create backupapp.py
Browse files- backupapp.py +33 -0
backupapp.py
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
Solution Demonstrations:
|
13 |
+
1. Face Mesh: https://codepen.io/mediapipe/full/KKgVaPJ
|
14 |
+
2. Face Detection: https://codepen.io/mediapipe/full/dyOzvZM
|
15 |
+
3. Hands: https://codepen.io/mediapipe/full/RwGWYJw
|
16 |
+
4. Face, Hands, Body: https://codepen.io/mediapipe/full/LYRRYEw
|
17 |
+
5. Objectron: https://codepen.io/mediapipe/full/BaWvzdY
|
18 |
+
6. Full Skeletal Pose: https://codepen.io/mediapipe/full/jOMbvxw
|
19 |
+
7. Self Segmentation From Background: https://codepen.io/mediapipe/full/wvJyQpq
|
20 |
+
Demonstration in Action with Screenshots:
|
21 |
+
1. Self Segmentation From Background:
|
22 |
+

|
23 |
+
2. Full Skeletal Pose:
|
24 |
+

|
25 |
+
3. Hands - Both in 3D Projection even hidden surface vertices - Mahalo:
|
26 |
+

|
27 |
+
4. Holistic - Face, Hands, Body:
|
28 |
+

|
29 |
+
5. Face Detection:
|
30 |
+

|
31 |
+
6. Face Mesh Real Time - 30 Frames per second!
|
32 |
+

|
33 |
+
""")
|