Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for an AR with image recognition library [closed]

I'm working on a project in which we have to launch several AR animations after detection of a toy's face. There are 36 toy's models and each toy must have a specific animation.

In other similar projects we have worked with common AR libraries but we never had to face the image recognition issue.

Do you know any library that could fit into that case?

After googling a lot I've found qualcomm Vuforia and it seems interesting. Have you used it or heard comments about it?

Thank you in advance.

like image 928
user1634110 Avatar asked Aug 29 '12 19:08

user1634110


People also ask

What is the other name for image recognition AR?

Marker-based AR This type of AR, also known as recognition-based AR or image recognition, relies on identification of markers/user-defined images to function.

What is image recognition in AR?

Image recognition is a marker-based AR technology. Think of a marker as an anchor that connects virtual content with the real-world. The marker can be an image, shape, or surface. Once the marker is detected by the application, the AR experience begins by placing preloaded digital content on top of it.

What is AR recognition?

What Is AR Object Recognition? AR object recognition, also known as object detection, attaches a digital 3D model to a real-world object that learners can pick up and manipulate. Learners scan the real-world 3D object, then a simulated 3D model is attached to it.

How do you trigger augmented reality?

The user must orientate the camera towards a precise marker to make the 3D image appear on the screen. The connection is created between the digital world and the real world by using a code hidden in an image, in a text or an object for example. These tools must be very distinctive and recognizable by the camera.


2 Answers

Qualcomm is a really good library, completely up-to-date. We have worked with it and results are difficult to improve with other libraries. The problem is that it is not free.

If you want a free library where you can build your own SDK then OpenCV is the choice. You have all the functions you need. You will need to spend some time in understanding it and coding, but for your application it is quite easy.

like image 105
Jav_Rock Avatar answered Oct 13 '22 11:10

Jav_Rock


I would recommend OpenCV. Great open source library that is perfect for applications like this.

like image 33
James Avatar answered Oct 13 '22 12:10

James