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
30
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
29
iOSDevTH #21
kajornsakp
0
35
What's new in Flutter (Google I/O Extended Bangkok 22)
kajornsakp
0
52
Mobile Design System at scale
kajornsakp
0
75
What's new in Flutter 2020
kajornsakp
0
53
Mobile Machine Learning for All Skill Levels
kajornsakp
0
26
What's new in Flutter 1.9
kajornsakp
0
47
Kotlin meets Web
kajornsakp
0
19
From design to develop with Material Components
kajornsakp
0
130
Other Decks in Technology
See All in Technology
現場の種を事業の芽にする - エンジニア主導のイノベーションを事業戦略に装着する方法 -
kzkmaeda
2
2.1k
Cloud Spanner 導入で実現した快適な開発と運用について
colopl
1
700
ハッキングの世界に迫る~攻撃者の思考で考えるセキュリティ~
nomizone
13
5.2k
滅・サービスクラス🔥 / Destruction Service Class
sinsoku
6
1.6k
トラシューアニマルになろう ~開発者だからこそできる、安定したサービス作りの秘訣~
jacopen
2
2k
エンジニアのためのドキュメント力基礎講座〜構造化思考から始めよう〜(2025/02/15jbug広島#15発表資料)
yasuoyasuo
17
6.8k
プロダクトエンジニア構想を立ち上げ、プロダクト志向な組織への成長を続けている話 / grow into a product-oriented organization
hiro_torii
1
220
アジャイル開発とスクラム
araihara
0
170
【Developers Summit 2025】プロダクトエンジニアから学ぶ、 ユーザーにより高い価値を届ける技術
niwatakeru
2
1.4k
データマネジメントのトレードオフに立ち向かう
ikkimiyazaki
6
990
室長と気ままに学ぶマイクロソフトのビジネスアプリケーションとビジネスプロセス
ryoheig0405
0
370
Swiftの “private” を テストする / Testing Swift "private"
yutailang0119
0
130
Featured
See All Featured
For a Future-Friendly Web
brad_frost
176
9.5k
Designing for humans not robots
tammielis
250
25k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
27
1.6k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
2.1k
Docker and Python
trallard
44
3.3k
Java REST API Framework Comparison - PWX 2021
mraible
28
8.4k
Typedesign – Prime Four
hannesfritz
40
2.5k
Why Our Code Smells
bkeepers
PRO
336
57k
A better future with KSS
kneath
238
17k
Into the Great Unknown - MozCon
thekraken
35
1.6k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Scaling GitHub
holman
459
140k
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