File size: 2,285 Bytes
e6ed137 |
1 2 3 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 31 32 33 |
import streamlit as st
st.markdown("""
#### MediaPipe - A cross language SDK for AI that is real time, 3d, camera responsive, and on any device for nearly any language
Mediapipe has fast and flexible AI/ML pipelines. Below are Examples with Javascript Links!
1. Image Classifier: https://mediapipe-studio.webapps.google.com/demo/image_classifier
2. Object Detector: https://mediapipe-studio.webapps.google.com/demo/object_detector
3. Text Classification: https://mediapipe-studio.webapps.google.com/demo/text_classifier
4. Gesture Recognizer: https://mediapipe-studio.webapps.google.com/demo/gesture_recognizer
5. Hand Landmark Detection: https://mediapipe-studio.webapps.google.com/demo/hand_landmarker
6. Audio Classifier: https://mediapipe-studio.webapps.google.com/demo/audio_classifier
Getting Started: https://google.github.io/mediapipe/getting_started/javascript.html
Solution Demonstrations:
1. Face Mesh: https://codepen.io/mediapipe/full/KKgVaPJ
2. Face Detection: https://codepen.io/mediapipe/full/dyOzvZM
3. Hands: https://codepen.io/mediapipe/full/RwGWYJw
4. Face, Hands, Body: https://codepen.io/mediapipe/full/LYRRYEw
5. Objectron: https://codepen.io/mediapipe/full/BaWvzdY
6. Full Skeletal Pose: https://codepen.io/mediapipe/full/jOMbvxw
7. Self Segmentation From Background: https://codepen.io/mediapipe/full/wvJyQpq
Demonstration in Action with Screenshots:
1. Self Segmentation From Background:

2. Full Skeletal Pose:

3. Hands - Both in 3D Projection even hidden surface vertices - Mahalo:

4. Holistic - Face, Hands, Body:

5. Face Detection:

6. Face Mesh Real Time - 30 Frames per second!

""") |