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
35
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
37
iOSDevTH #21
kajornsakp
0
43
What's new in Flutter (Google I/O Extended Bangkok 22)
kajornsakp
0
61
Mobile Design System at scale
kajornsakp
0
81
What's new in Flutter 2020
kajornsakp
0
60
Mobile Machine Learning for All Skill Levels
kajornsakp
0
30
What's new in Flutter 1.9
kajornsakp
0
51
Kotlin meets Web
kajornsakp
0
22
From design to develop with Material Components
kajornsakp
0
140
Other Decks in Technology
See All in Technology
AI時代の大規模データ活用とセキュリティ戦略
ken5scal
0
180
AWSの最新サービスでAIエージェント構築に楽しく入門しよう
minorun365
PRO
8
400
Rethinking Incident Response: Context-Aware AI in Practice - Incident Buddy Edition -
rrreeeyyy
0
110
Agent Development Kitで始める生成 AI エージェント実践開発
danishi
0
160
LTに影響を受けてテンプレリポジトリを作った話
hol1kgmg
0
380
Amazon Qで2Dゲームを作成してみた
siromi
0
160
Mackerel in さくらのクラウド
cubicdaiya
1
130
Segment Anything Modelの最新動向:SAM2とその発展系
tenten0727
0
920
ロールが細分化された組織でSREと協働するインフラエンジニアは何をするか? / SRE Lounge #18
kossykinto
0
230
Lambda management with ecspresso and Terraform
ijin
2
170
GISエンジニアよ 現場に行け!
sudataka
1
140
Intro to Software Startups: Spring 2025
arnabdotorg
0
270
Featured
See All Featured
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
880
Measuring & Analyzing Core Web Vitals
bluesmoon
8
550
Practical Orchestrator
shlominoach
190
11k
Code Reviewing Like a Champion
maltzj
525
40k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.6k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.8k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Navigating Team Friction
lara
188
15k
BBQ
matthewcrist
89
9.8k
Side Projects
sachag
455
43k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.6k
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