臉 - The Face Detection Functions on Android

25
The Face Detection Functions on Android PRADA - Android Dev at PicCollage

Transcript of 臉 - The Face Detection Functions on Android

Page 1: 臉 - The Face Detection Functions on Android

The Face Detection Functions on Android PRADA - Android Dev at PicCollage

Page 2: 臉 - The Face Detection Functions on Android

PicCollage

Page 3: 臉 - The Face Detection Functions on Android

Why FaceDetection is important?

Page 4: 臉 - The Face Detection Functions on Android

Snapchat Snow

Because it’s funny

Page 5: 臉 - The Face Detection Functions on Android
Page 6: 臉 - The Face Detection Functions on Android

Never Alone

https://play.google.com/store/apps/details?id=com.cardinalblue.android.neveralone

Page 7: 臉 - The Face Detection Functions on Android

PicCollage

Before After

Page 8: 臉 - The Face Detection Functions on Android

How to implement it on Android?

Page 9: 臉 - The Face Detection Functions on Android

Assumption only discuss client-side calculation.

Page 10: 臉 - The Face Detection Functions on Android

android.media.FaceDetector

http://developer.android.com/intl/zh-tw/reference/android/media/FaceDetector.html

android.media.FaceDetector.Face float getFaceDistance() void getMidPoint(PointF)

x

Page 11: 臉 - The Face Detection Functions on Android

android.hardware.Camera.FaceDetectionListener

http://developer.android.com/intl/zh-tw/reference/android/hardware/Camera.FaceDetectionListener.html

Camera.Face PointF leftEye, rightEye, mouth Rect rect

x x

x

Page 12: 臉 - The Face Detection Functions on Android

Google Mobile Vision SDK

Page 13: 臉 - The Face Detection Functions on Android

Landmark

http://android-developers.blogspot.tw/2015/08/face-detection-in-google-play-services.html

gms.vision.face.Face List<Landmark>getLandmarks()

Page 14: 臉 - The Face Detection Functions on Android

Smile Mode

gms.vision.face.Face float getIsLeftEyeOpenProbability() float getIsRightEyeOpenProbability() float getIsSmilingProbability()

Page 15: 臉 - The Face Detection Functions on Android

Face Rotationgms.vision.face.Face float getEulerY() float getEulerZ()

Page 16: 臉 - The Face Detection Functions on Android

It’s Beta Version

Samsung S4 didn’t work https://github.com/googlesamples/android-vision/issues/39

https://github.com/googlesamples/android-vision/issues/21Preview/Capture Resolution is bad

Page 17: 臉 - The Face Detection Functions on Android

Open CV

Page 18: 臉 - The Face Detection Functions on Android

You lost one man

Page 19: 臉 - The Face Detection Functions on Android

Nobody Blink

Page 20: 臉 - The Face Detection Functions on Android

?

Page 21: 臉 - The Face Detection Functions on Android

OpenCV for Android

Page 22: 臉 - The Face Detection Functions on Android

Sample CodecascadeFile = new File(cascadeDir, "lbpcascade_frontalface.xml"); nativeDetector = new DetectionBasedTracker( cascadeFile.getAbsolutePath(), 0); nativeDetector.setMinFaceSize(FACE_SIZE); MatOfRect faces = new MatOfRect(); nativeDetector.detect(PREVIEW_BUFFER, faces); Rect[] facesArray = faces.toArray();`

https://github.com/bearprada/android_camera_with_opencv_sample

Page 23: 臉 - The Face Detection Functions on Android

Summarymedia.Face Camera.Face gms.vision.face Open CV

footprint 0MB 0MB ~85KB ~20MB💩

camera integration x 💩 o o o

customisable 🌟 🌟 🌟🌟 🌟🌟🌟

easy to use 🌟🌟🌟 🌟🌟🌟 🌟🌟 🌟

min-SDK version 1 14 💩 9 9

Information 🌟 🌟 🌟🌟 🌟🌟🌟

Page 24: 臉 - The Face Detection Functions on Android

Thanks

Page 25: 臉 - The Face Detection Functions on Android

Android Dev Intern

http://cardinalblue.com/jobs