File size: 2,389 Bytes
dd54410 cd7ddce 4215d5d |
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("""
#### 3๐MediaPipe๐คธโโ๏ธ๐บ
MediaPipe: Real-time, 3D, body and face cross-platform AI/ML SDK on any device using Javascript, Codepen and Mediapipe.
#### AI/ML Examples with JavaScript Links ๐
1. ๐ผ๏ธ Image Classifier: [Link](https://mediapipe-studio.webapps.google.com/demo/image_classifier)
2. ๐งฑ Object Detector: [Link](https://mediapipe-studio.webapps.google.com/demo/object_detector)
3. ๐ Text Classifier: [Link](https://mediapipe-studio.webapps.google.com/demo/text_classifier)
4. ๐ Gesture Recognizer: [Link](https://mediapipe-studio.webapps.google.com/demo/gesture_recognizer)
5. ๐ค Hand Landmarks: [Link](https://mediapipe-studio.webapps.google.com/demo/hand_landmarker)
6. ๐ต Audio Classifier: [Link](https://mediapipe-studio.webapps.google.com/demo/audio_classifier)
๐ Getting Started: [link](https://google.github.io/mediapipe/getting_started/javascript.html)
#### ๐ฅ Solution Demonstrations
1. ๐ Face Mesh: [link](https://codepen.io/mediapipe/full/KKgVaPJ)
2. ๐ Face Detection: [link](https://codepen.io/mediapipe/full/dyOzvZM)
3. ๐คฒ Hands: [link](https://codepen.io/mediapipe/full/RwGWYJw)
4. ๐คธโโ๏ธ Holistic (Face, Hands, Body): [link](https://codepen.io/mediapipe/full/LYRRYEw)
5. ๐ฆ Objectron: [link](https://codepen.io/mediapipe/full/BaWvzdY)
6. ๐บ Full Skeletal Pose: [link](https://codepen.io/mediapipe/full/jOMbvxw)
7. ๐ค Self Segmentation: [link](https://codepen.io/mediapipe/full/wvJyQpq)
#### ๐ผ๏ธ Demonstrations with Screenshots
1. ๐ค Self Segmentation: 
2. ๐บ Full Skeletal Pose: 
3. ๐คฒ Hands in 3D: 
4. ๐คธโโ๏ธ Holistic View: 
5. ๐ Face Detection: 
6. ๐ Face Mesh (30 FPS): 
""")
|