Are there any good tutorials or sample applications out there that demonstrate how to make an augmented reality iPhone application?
|
closed as not constructive by Nasreddine, Bo Persson, Jeremiah Willcock, NFC guy, Zuul Oct 24 '12 at 20:46
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Question is old i know. Just for the sake of completion: http://www.raywenderlich.com/3997/introduction-to-augmented-reality-on-the-iphone |
||||
|
|
|
there is a GPL (free and open source) augmented reality browser for iPhone: mixare augmented reality engine. You can find the code in gthub: https://github.com/mixare/mixare-iphone/ and use-cases and more info on the website: http://www.mixare.org Best, Daniele |
|||
|
|
|
I found one too It has the source code at github which is linked at the end of the page. |
|||
|
|
|
Check this: http://www.iphonedevsdk.com/forum/iphone-sdk-game-development/38119-augmented-reality-ar.html You will find a tutorial and a sample :). Good Luck! |
|||
|
|
|
It is possible to make an AR application for iPhone 3.1 that does live image processing (I've done one for myself). Here is a good tutorial with working sample code for 2.x http://www.morethantechnical.com/2009/07/01/augmented-reality-on-the-iphone-using-nyartoolkit-w-code/ For 3.1, you'll need to replace the camera video grabbing code. Tip: PLCameraController _createPreviewIOSurface. Note that you can't submit such apps to the App Store because of the use of private API. |
|||
|
|
|
Here is an iphone AR project hosted on github: http://github.com/zac/iphonearkit/ Haven't used it myself though. |
|||
|
|
|
I doubt exactly such a thing exists, but what you need to do is look at the location and camera frameworks for the iPhone, and go from there. Basically, you will create a UIImagePickerController (the Camera class) and overlay information on the view, via a custom .cameraOverlayView (which is a property of UIImagePickerController in 3.0). You will probably want to get information (location, heading, distance, etc.) from the GPS of the device, using the CoreLocation framework. You will also probably want to do some web server interactions, and for that I suggest ASIHTTPRequest. Those are the basic tools needed to build an AR application. |
|||
