Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
ML Kit : Face contour detection
Search
Kajornsak Peerapathananont
December 02, 2018
Technology
0
37
ML Kit : Face contour detection
Firebase Summit Extended 2018
Kajornsak Peerapathananont
December 02, 2018
Tweet
Share
More Decks by Kajornsak Peerapathananont
See All by Kajornsak Peerapathananont
Understanding your Android build
kajornsakp
0
40
iOSDevTH #21
kajornsakp
0
45
What's new in Flutter (Google I/O Extended Bangkok 22)
kajornsakp
0
66
Mobile Design System at scale
kajornsakp
0
85
What's new in Flutter 2020
kajornsakp
0
61
Mobile Machine Learning for All Skill Levels
kajornsakp
0
34
What's new in Flutter 1.9
kajornsakp
0
52
Kotlin meets Web
kajornsakp
0
22
From design to develop with Material Components
kajornsakp
0
140
Other Decks in Technology
See All in Technology
Azure Well-Architected Framework入門
tomokusaba
1
150
ヘンリー会社紹介資料(エンジニア向け) / company deck for engineer
henryofficial
0
440
SOTA競争から人間を超える画像認識へ
shinya7y
0
660
オブザーバビリティと育てた ID管理・認証認可基盤の歩み / The Journey of an ID Management, Authentication, and Authorization Platform Nurtured with Observability
kaminashi
2
1.5k
Observability — Extending Into Incident Response
nari_ex
1
680
ゼロコード計装導入後のカスタム計装でさらに可観測性を高めよう
sansantech
PRO
1
610
AIエージェントによる業務効率化への飽くなき挑戦-AWS上の実開発事例から学んだ効果、現実そしてギャップ-
nasuvitz
5
1.6k
OTEPsで知るOpenTelemetryの未来 / Observability Conference Tokyo 2025
arthur1
0
390
データエンジニアとして生存するために 〜界隈を盛り上げる「お祭り」が必要な理由〜 / data_summit_findy_Session_1
sansan_randd
0
170
ざっくり学ぶ 『エンジニアリングリーダー 技術組織を育てるリーダーシップと セルフマネジメント』 / 50 minute Engineering Leader
iwashi86
8
4k
Raycast AI APIを使ってちょっと便利なAI拡張機能を作ってみた
kawamataryo
0
230
書籍『実践 Apache Iceberg』の歩き方
ishikawa_satoru
0
390
Featured
See All Featured
Visualization
eitanlees
150
16k
Leading Effective Engineering Teams in the AI Era
addyosmani
7
680
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.6k
[RailsConf 2023] Rails as a piece of cake
palkan
57
6k
Why Our Code Smells
bkeepers
PRO
340
57k
YesSQL, Process and Tooling at Scale
rocio
174
15k
Imperfection Machines: The Place of Print at Facebook
scottboms
269
13k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
Agile that works and the tools we love
rasmusluckow
331
21k
Code Review Best Practice
trishagee
72
19k
Music & Morning Musume
bryan
46
6.9k
Making Projects Easy
brettharned
120
6.4k
Transcript
Thailand ML Kit : Face contour detection Kajornsak Peerapathananont Agoda
Summit Extended
Thailand
Thailand
Thailand
Thailand
Thailand
Thailand Face Detection • Recognize facial features • Recognize facial
expressions • Face tracking • Real-time processing
Thailand
Thailand - hasRightEyeOpenPropbability - RightEyeOpenPropbability - landmarkType - position -
hasLeftEyeOpenPropbability - leftEyeOpenPropbability - landmarkType - position smilePropbability Face Landmarks
Thailand Face Contours
Thailand let options = VisionFaceDetectorOptions() options.performanceMode = .accurate options.landmarkMode =
.all let faceDetector = vision.faceDetector(options: options) let options = VisionFaceDetectorOptions() options.performanceMode = .accurate options.contourMode = .all let faceDetector = vision.faceDetector(options: options)
Thailand DEMO