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
36
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
82
What's new in Flutter 2020
kajornsakp
0
61
Mobile Machine Learning for All Skill Levels
kajornsakp
0
32
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
kaigi_on_rails_2025_設計.pdf
nay3
8
4.1k
北海道の人に知ってもらいたいGISスポット / gis-spot-in-hokkaido-2025
sakaik
0
190
Streamlit は社内ツールだけじゃない!PoC の速さで実現する'商用品質'の分析 SaaS アーキテクチャ
kdash
2
1.1k
あなたのWebサービスはAIに自動テストしてもらえる?アクセシビリティツリーで読み解く、AIの『視点』
yusukeiwaki
1
3.4k
避けられないI/O待ちに対処する: Rails アプリにおけるSSEとasync gemの活用 / Tackling Inevitable I/O Latency in Rails Apps with SSE and the async gem
moznion
2
1.8k
Tomorrow graphlib, Let us use everybody
hayaosuzuki
0
150
自作LLM Native GORM Pluginで実現する AI Agentバックテスト基盤構築
po3rin
2
210
実装で解き明かす並行処理の歴史
zozotech
PRO
1
110
PLaMo2シリーズのvLLM実装 / PFN LLM セミナー
pfn
PRO
2
830
ZOZOのAI活用実践〜社内基盤からサービス応用まで〜
zozotech
PRO
0
130
pprof vs runtime/trace (FlightRecorder)
task4233
0
140
PLaMoの事後学習を支える技術 / PFN LLMセミナー
pfn
PRO
9
3.4k
Featured
See All Featured
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
How STYLIGHT went responsive
nonsquared
100
5.8k
Code Review Best Practice
trishagee
72
19k
Raft: Consensus for Rubyists
vanstee
139
7.1k
Documentation Writing (for coders)
carmenintech
75
5k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.5k
Git: the NoSQL Database
bkeepers
PRO
431
66k
A better future with KSS
kneath
239
17k
How GitHub (no longer) Works
holman
315
140k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Writing Fast Ruby
sferik
629
62k
How to Think Like a Performance Engineer
csswizardry
27
2k
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