Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does Vuforia image recognition work?

I am using the Vuforia SDK to build an Android application and am curious as to how the marker tracking works. Does the app convert the video frame into byte codes and then compare these against the .dat file generated by creating the marker? Also, where is this code found in the Vuforia sample app, is it in the C++ ? Thanks.

like image 671
rusty009 Avatar asked Sep 03 '12 20:09

rusty009


1 Answers

Well, you don't see the code for recognition and tracking because they are Intellectual property of Qualcomm and usually should not be revealed. Vuforia is not an open-source library.

Vuforia first detects "feature points" in your target image [Web-based target management] and then uses the data to compare the features in target image and the receiving frame from camera.

Google "Natural feature detection and tracking" which falls under Computer Vision area and you will find interesting stuff.

like image 76
Sam R. Avatar answered Sep 22 '22 05:09

Sam R.