Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apple Vision image recognition

As many other developers, I have plunged myself into Apple's new ARKit technology. It's great. For a specific project however, I would like to be able to recognise (real-life) images in the scene, to either project something on it (just like Vuforia does with its target images), or to use it to trigger an event in my application.

In my research on how to accomplish this, I stumbled upon the Vision and CoreML frameworks by Apple. This seems promising, although I have not yet been able to wrap my head around it.

As I understand it, I should be able to do exactly what I want by finding rectangles using the Vision framework and feeding those into a CoreML model that simply compares it to the target images that I predefined within the model. It should then be able to spit out which target image it found.

Although this sounds good in my head, I have not yet found a way to do this. How would I go about creating a model like that, and is it even possible at all?

like image 393
Marc Van Deuren Avatar asked Sep 11 '17 08:09

Marc Van Deuren


1 Answers

I found this project on Github some weeks ago: AR Kit Rectangle Detection

I think that is exactly what you are looking for...

like image 185
Nico S. Avatar answered Oct 07 '22 00:10

Nico S.