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 |
+
![image](https://user-images.githubusercontent.com/30595158/225767564-786928a3-7c91-4df1-babb-0cc4c2b71460.png)
|
23 |
+
2. Full Skeletal Pose:
|
24 |
+
![image](https://user-images.githubusercontent.com/30595158/225767721-6f088349-3f56-41b3-85d4-98f2456dc165.png)
|
25 |
+
3. Hands - Both in 3D Projection even hidden surface vertices - Mahalo:
|
26 |
+
![image](https://user-images.githubusercontent.com/30595158/225767970-0e1000e8-72a8-4276-a6f0-ccfcd3ac6d72.png)
|
27 |
+
4. Holistic - Face, Hands, Body:
|
28 |
+
![image](https://user-images.githubusercontent.com/30595158/225768092-2cb4a144-7033-46b1-a476-3e0ec376eb36.png)
|
29 |
+
5. Face Detection:
|
30 |
+
![image](https://user-images.githubusercontent.com/30595158/225768256-c97c0f62-6ef9-4c7e-aa41-8eaf4f344a3d.png)
|
31 |
+
6. Face Mesh Real Time - 30 Frames per second!
|
32 |
+
![image](https://user-images.githubusercontent.com/30595158/225768360-c64197ff-919f-47a9-8cc0-c6d5e73e5853.png)
|
33 |
+
""")
|