GAMA
GAMA

Reputation: 5996

getting started with augmented reality Android

I'm planning to start an application comprises of augmented reality in android.

Proposed application should do the following :

  1. Whenever user come across certain logo, he will capture that logo by using device's camera.

  2. Then the captured image will undergo pattern-matching and will be compared with the predefined image present in the database.

  3. Based on matching, certain action will take place(This is not the matter of concern as of now).

How do I start???

I came across the similar questions on SO, but haven't got any satisfactory info.

I had a glance at openCV but it says : It has C++, C, Python and soon Java interfaces running on Windows, Linux, Android and Mac.

As I'm using Mono for Android, it uses C# for development. So will openCV work in this scenario?

Also I'm relatively new to android development and just beginner when it comes to using Mono for Android.

I know I'm being bit unclear in this que, but I really don't have any idea about augmented reality so any tutorial/book to start with in order to develop the app based on AR will be of great help.

Upvotes: 2

Views: 1977

Answers (2)

Wayne Phipps
Wayne Phipps

Reputation: 2069

I've been investigating people counting and identification using cameras and came across this thread.

From my limited knowledge, OpenCV seems to be widely used when it comes to image processing.

They even list it as one of the developer tools in the Microsoft Kinect SDK.

openCV is open source and there are several wrappers which will allow you to use it in a .Net environment.

One which lists compatibility with Mono and Monodoroid (Mono for Android) is Emgu althought there is a small license fee if the wrapper will be used in a commercial application.

Upvotes: 0

C.d.
C.d.

Reputation: 10005

Android ARToolkit can be a good start point

Upvotes: 2

Related Questions