ARKit and Face-Recognition in iOS

iOS 11
Adds a lot of new posibilites for developers with new frameworks for Augmented Reality (ARKit), Object Detection (Vision) and Machine Learning (CoreML).
To demonstrate we created an augmented reality app with face-recognition:
How does it work:
- The app continuously grabs the camera image
- Detects faces on the image using Vision
- Extracts the faces and runs through our machine-learning model
- Identifies persons with the result
- Calculates a three dimensional coordinate according to the location on the screen
- Displays information in AR
We will write a more in-depth blog post, how we created the machine-learning model 😉
Meanwhile the project is available on GitHub:
https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit
Update:
Here is our follow-up blog-post about the model creation:
Comment article
Recent posts

February 2023
Tioman Gally
Kotlin: How to Do Higher-Order Functions

September 2022
Filippos Vogiatzian & Javier De Haro Rodríguez
Maven beyond mvn clean install

June 2022
Luc Weinbrecht
How Clean Architecture helps you migrating Camunda Platform 7 to 8

April 2022
Stefan Ludwig
Asserting Log-Messages with LogRecorder

December 2021
Alexander Miller & Sebastian Letzel
Kotlin Assertion Libraries - Atrium

October 2021
Dominik Kriese
Cucumber without BDD - is there any value in it?
Comments
Bruno
Could you create a guide on how to create the model? Thanks!
dream zhang
hello, I want to know how do you created the machine-learning model?When can you write the blog?