All Projects β†’ DroidsOnRoids β†’ Visionfacedetection

DroidsOnRoids / Visionfacedetection

Licence: mit
An example of use a Vision framework for face landmarks detection in iOS 11

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Visionfacedetection

Ios 11 By Examples
πŸ‘¨πŸ»β€πŸ’» Examples of new iOS 11 APIs
Stars: ✭ 3,327 (+1189.53%)
Mutual labels:  xcode9, vision, ios11
Swift Articles
Monthly Series - Top 10 Angular Articles
Stars: ✭ 139 (-46.12%)
Mutual labels:  xcode9, ios11
Evncustomsearchbar
πŸ”Born for iOS 11 and iPhone X SearchBar
Stars: ✭ 52 (-79.84%)
Mutual labels:  xcode9, ios11
BabelCamera
Find out how to describe the things around you in another language with Core ML and the Vision framework in iOS 11! πŸ‘€
Stars: ✭ 13 (-94.96%)
Mutual labels:  xcode9, ios11
Facelandmarksdetection
Finds facial features such as face contour, eyes, mouth and nose in an image.
Stars: ✭ 130 (-49.61%)
Mutual labels:  vision, ios11
Measure
Using ARKit to make calculate the distance of real-world objects
Stars: ✭ 357 (+38.37%)
Mutual labels:  xcode9, ios11
Textdetection
Vision Framework Demo on Text Detection
Stars: ✭ 173 (-32.95%)
Mutual labels:  xcode9, ios11
Facecropper
βœ‚οΈ Crop faces, inside of your image, with iOS 11 Vision api.
Stars: ✭ 479 (+85.66%)
Mutual labels:  vision, ios11
CustomVisionMicrosoftToCoreMLDemoApp
This app recognises 3 hand signs - fist, high five and victory hand [ rock, paper, scissors basically :) ] with live feed camera. It uses a HandSigns.mlmodel which has been trained using Custom Vision from Microsoft.
Stars: ✭ 25 (-90.31%)
Mutual labels:  vision, ios11
RichNotifications
No description or website provided.
Stars: ✭ 44 (-82.95%)
Mutual labels:  xcode9, ios11
iOS-ARKit
Basic Concepts and Projects using ARKit on iOS.
Stars: ✭ 18 (-93.02%)
Mutual labels:  xcode9, ios11
Ios11 Qr Code Example
Example showing how to use the QR-code detection API (VNDetectBarcodesRequest) in iOS 11.
Stars: ✭ 77 (-70.16%)
Mutual labels:  vision, ios11
Facevision
iOS11 Vision framework example. Detection of face landmarks
Stars: ✭ 47 (-81.78%)
Mutual labels:  vision, ios11
Chineseidcardocr
[Deprecated] πŸ‡¨πŸ‡³δΈ­ε›½δΊŒδ»£θΊ«δ»½θ―ε…‰ε­¦θ―†εˆ«
Stars: ✭ 1,015 (+293.41%)
Mutual labels:  vision, ios11
ARKitPhysics
ARKit Demo for Physics
Stars: ✭ 21 (-91.86%)
Mutual labels:  xcode9, ios11
Cs193p Fall 2017 Demo
Stanford CS193P Fall 2017 Demo
Stars: ✭ 157 (-39.15%)
Mutual labels:  xcode9, ios11
Imagedetect
βœ‚οΈ Detect and crop faces, barcodes and texts in image with iOS 11 Vision api.
Stars: ✭ 286 (+10.85%)
Mutual labels:  vision, ios11
Measurearkit
An example of measuring app with ARKit in iOS 11
Stars: ✭ 220 (-14.73%)
Mutual labels:  xcode9, ios11
iOS11-Demos
Collection of samples and demos of features introduced in iOS 11
Stars: ✭ 16 (-93.8%)
Mutual labels:  xcode9, ios11
Visual-Effects-Shadow
Add a drop shadow to a UIVisualEffectView using a 9-part UIImage.
Stars: ✭ 56 (-78.29%)
Mutual labels:  xcode9, ios11

VisionFaceDetection

An example of use a Vision framework for face landmarks detection

Landmark detection needs to be divided in to two steps.

First one is face rectangle detection by using VNDetectFaceRectanglesRequest based on pixelBuffer provided by delegate function captureOutput.

Next we need to setup the property inputFaceObservations of VNDetectFaceLandmarksRequest object, to provide the input. Now we are redy to start landmarks detection.

It's possible to detects landmarks like: faceContour, leftEye, rightEye, nose, noseCrest, lips, outerLips, leftEyebrow, and rightEyebrow.

To display the results I'm using multiple CAShapeLayer with UIBezierPath. Landmarks detection is working on live front camera preview.

Example of detected landmarks

If you want more details about using Vision framework, go and check my blogpost about it

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].