117

I am planning to develop an augmented reality application for Android phone. Does anyone know if there is any existing framework for augmented reality which could be used for such applications?

Nakilon
  • 34,866
  • 14
  • 107
  • 142
Niko Gamulin
  • 66,025
  • 95
  • 221
  • 286

22 Answers22

94

For ideas, you could look at the following:

Existing Apps and their APIs: There are number of Augmented Reality applications in the Android market of which Layar and Wikitude are well known. Others like SomaView and GeoVector also exist. AFAIK, Wikitude and Layar have made their API's public.

Toolkit: There is also a toolkit named, NyARToolkit that provides a library for such a thing.

Tutorial: DevX Article by Chris Haseman

Good Luck!

Kevin Robatel
  • 8,025
  • 3
  • 44
  • 57
Samuh
  • 36,316
  • 26
  • 109
  • 116
  • 4
    Also have a look at Junaio http://www.junaio.com/develop/ – Fernando Gallego May 31 '12 at 14:21
  • 6
    I would also add that it depends if you want do do location based AR or vision based (e.g. marker based) AR. I would say that on android for vision based ar http://www.metaio.com/software/mobile-sdk/ is realy good and for location based you can also try http://droidar.googlecode.com/ or http://code.google.com/p/android-augment-reality-framework/ for open source SDKs – Simon Jul 23 '12 at 06:40
  • 1
    The Wikitude link is outdated: Everything around SDK and developer related stuff can be found at: [developer.wikitude.com](http://developer.wikitude.com) The Wikitude SDK is mixing both approaches - location based or sensor based Augmented Reality and computer vision AR – Wikitude Oct 12 '12 at 07:37
  • Aurasma currently offers their technology for free (standalone or embedded in other apps): http://www.aurasma.com/become-a-partner – OrangeDog Jan 04 '13 at 09:52
14

You can also use the new Qualcomm AR SDK http://developer.qualcomm.com/dev/augmented-reality

smitten
  • 311
  • 2
  • 5
  • 13
  • from aualcomm i am able download samples but i am getting java.lang.UnsatisfiedLinkError: setActivityPortraitMode this exception after running sample.please suggest me how to slove this issue. – user1083266 Mar 29 '13 at 10:42
  • You have to build and compile the NDK part of it using cygwin, follow the tutorial on https://developer.vuforia.com/resources/dev-guide/step-3-compiling-running-vuforia-sample-app – Captain overflow Sep 10 '13 at 08:54
  • NB: This one supports ONLY vision-based AR. – Wiseman Mar 17 '14 at 07:57
12

This page http://socialcompare.com/en/comparison/augmented-reality-sdks shows a broad comparative of augmented reality framworks. Is updated to March 2013.

It's featured

Lobo
  • 4,001
  • 8
  • 37
  • 67
12

There are two types of augmented reality:

a) marker based, which needs bidimensional markers to recognize using computer vision and image analysis to draw an image over them with the corresponding rotation (ARToolkit)

b) geolocation and orientation based, which means that the app knows the exact position in the earth where you are, and what are you facing and it computes what you see, based on geolocation. (layar,wikitude)

Apps like junaio mixes both of them

Fernando Gallego
  • 4,064
  • 31
  • 50
  • 3
    There's also what is considered "markerless" based AR that use natural features in a video frame to create a pose matrix which can be used to render virtual objects. This is basically how Vuforia works - https://developer.qualcomm.com/develop/mobile-technologies/augmented-reality – Rab Ross Apr 05 '12 at 10:42
  • I've used Junaio too :) I prefer Vuforia though... I'm pretty sure you need to buy a license to release any apps you build with Junaio – Rab Ross May 31 '12 at 15:24
9

I'm one of the developers Look! Look! is a complete framework for creating augmented reality applications on Android.

It was developed as a final project at the University Complutense of Madrid.

Their features are:

  • Augmented Reality
  • Location Indoor
  • Remote Services
  • 3D, 2D and Camera
  • Iterations with objects

Furthermore we have developed apps with the framework, theirs are published in our official web.

More information:

Official website - http://www.lookar.net/en/

Project stayed in – https://sourceforge.net/projects/lookar/

takrl
  • 6,356
  • 3
  • 60
  • 69
Sergio
  • 91
  • 1
  • 1
7

Check out Mixare. It's a pretty nice AR framework for Android. Unlike most of the previously mentioned suggestions (I'm not sure about all of them), source code is available for Mixare.

GobiasKoffi
  • 4,014
  • 14
  • 59
  • 66
6

Full open source marker based augmented reality framework. http://code.google.com/p/android-augment-reality-framework/

Justin
  • 61
  • 1
  • 1
2

BeyondAR is free and apache license v2

Joan P.S
  • 1,553
  • 1
  • 16
  • 42
2

http://layar.com/ would be the most popular thing I've seen. I made an app that allows for downloading and displaying of information much the same way as layar. It's pretty straight forward.

Rod
  • 52,748
  • 3
  • 38
  • 55
Steve
  • 21,163
  • 21
  • 69
  • 92
2

Hey, I maintain the AndroidARKit, an open source project on github. It's geographic based and includes a simple foursquare example application. More info here. or here. I wrote the devX article linked above. Feel free to contact me if you have any questions. It's licensed for commercial use with attribution. So feel free to use it in commercial apps.

haseman
  • 11,213
  • 8
  • 41
  • 38
2

I know a FLOSS system that help you to create AR applications. This system is LibreGeoSocial

Sathyajith Bhat
  • 21,321
  • 22
  • 95
  • 134
Roberto
  • 21
  • 1
2

Anyone interested in AR should also take a look at http://code.google.com/p/droidar/

Its an open-source framework for location based and marker based AR on Android.

Simon
  • 13,173
  • 14
  • 66
  • 90
  • I am trying to mark some geopoints using droidar . DO you have any similar projects for reference – png Aug 08 '12 at 05:54
  • Just take a look at the many example setups in the "de.rwth.setups" package in the DroidAR project folder. And watch the introduction videos, they should give you a first overview – Simon Aug 08 '12 at 13:54
  • I had watched all those videos and tried the demo projects. Got a rough idea. Have you used this in any of your projects ? I wanted to know how good is it . I am really confused which framework to use. I want to show some point of interest. As the user move , it shoul show those pints which are visible . Thanks a lot for your help and answer – png Aug 09 '12 at 05:43
  • If you want to do location based AR on Android its definitely a good idea to use it. And if you have problems just post a question to the issues section, normally you should get help very fast. – Simon Aug 13 '12 at 14:06
2

The pioneer in AR metaio(Developers of Junaio) will release a free version of the metaio Mobile SDK (Q4/2011). :)

Oli
  • 1,407
  • 3
  • 30
  • 47
1

Try this one ! An Open Source Project : http://code.google.com/p/andar/

Hardik Thaker
  • 3,050
  • 1
  • 27
  • 37
1

I know that artoolkit has a port to Symbian. Maybe there exists a port to Android as well

Toad
  • 15,593
  • 16
  • 82
  • 128
1

The Wikitude API is another alternative for Android applications: http://www.wikitude.org/developers

Jeff Gilfelt
  • 26,131
  • 7
  • 48
  • 47
1

I've found the Layar Player.

"The Layar Player is a tool that enables anyone to embed augmented reality layers directly into their very own application".

Currently the Layar Player is for iPhone only, but an Android version will be available in Q4 2011.

Oli
  • 1,407
  • 3
  • 30
  • 47
1

D’Fusion Mobile is a marker based and geolocation based Platform with BarCode Support, Face Tracking and Sensor Support.

Oli
  • 1,407
  • 3
  • 30
  • 47
0

This Android augmented reality library enables you to convert GPS (lat/lon) coordinates to screen (x/y) coordinates. It's a simple jar import and handles all calculations for you.

Community
  • 1
  • 1
Milo
  • 1,017
  • 3
  • 16
  • 22
0

As reinier said, artoolkit could be the best option. there is for android, check this out

jose
  • 2,733
  • 4
  • 37
  • 51
0

ar23d is a 3D Augmented Reality SDK for Android 2.2+ and Android 3.0+. How much are the licensing costs can not be found on their website.

Oli
  • 1,407
  • 3
  • 30
  • 47
-1

I think You should use String SDK

http://www.poweredbystring.com/licensing

Download the project zip file from

https://github.com/kyleroche/Professional_iOS_AugmentedReality/blob/master/Ch10/mobile/mobile/ViewController.m

Then open CH-10 Project.That is locked with com.isidorey.mobile BundleIdentifier. So You have create a provisioning profile in name isidoreywildcard* . THen It will run.

But This is not the solution.

You need to run by using your own provisionin profile.

So first register in

http://www.poweredbystring.com/licensing

Then download the demoVersion to Try. You can use the libStringOGLPro-1.1-com-isidorey-mobile.a (You will get a .a static library from downloaded Demo Project) static library to check your project.

Its Better to read the book

http://www.amazon.com/Pro-iOS-5-Augmented-Reality/dp/1430239123

Babuli
  • 157
  • 1
  • 8