Giter Club home page Giter Club logo

iphone-ar-toolkit's People

Contributors

a1phanumeric avatar argami avatar baalexander avatar markrickert avatar mtigas avatar nielswh avatar zac avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iphone-ar-toolkit's Issues

Orientation disabled for the whole app , after presented ARViewcontroller

Hi ,
Orientation disabled for the whole app , after presented ARViewcontroller. please help me to solve this issue.

if([ARKit deviceSupportsAR]){
_arViewController = [[ARViewController alloc] initWithDelegate:self];
[_arViewController setModalTransitionStyle: UIModalTransitionStyleFlipHorizontal];
[self presentViewController:_arViewController animated:YES completion:nil];
}

found some hint and trying to solve
http://stackoverflow.com/questions/4574693/ios-device-orientation-disregarding-orientation-lock

Camera Quality

It appears as though the image being piped through the ARViewController is not running at the full resolution of the camera. It's very pixelated.

Screenshot - you can see the pixelation on the edge of the computer monitor:
IMG_4981

Fast moving markers

Hi everyone,

when i hold the phone in my hand its very hard to keep the markers with minimal movement on the screen. They are moving very fast to each direction. Is there a way to slow their movements?

Thanks

Has anyone used it with Parse?

Hello guys,

Has anyone used the AR-toolkit with Parse?

I am trying to populate the array with some data coming from Parse, but it did not work.

As I am a newbie, I might be passing some wrong argument to some variables.

In Parse's data browser I can create a class, and then create an object on my code, using its PFObject class.

For each class, in Parse's data browse, I can get values from keys, and the key which inherits from Parse's PFGeoPoint class already contains latitude and longitude.

arclass

I am trying the following:

PFObject *coordinates = [PFObject objectWithClassName:@"location"];
NSMutableArray *locationArray = [[NSMutableArray alloc] init];
ARGeoCoordinate *tempCoordinate;
CLLocation       *tempLocation;


tempLocation = [[CLLocation alloc] init];
tempLocation = [coordinates objectForKey:@"shopsLocation"];
tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation locationTitle:[coordinates objectForKey:@"description"]];
[locationArray addObject:tempCoordinate];

I am not finding a way to pass latitude and longitude to tempLocation using {initWithLatitude: longitude:}

tempLocation = [[CLLocation alloc] initWithLatitude:51.500152 longitude:-0.126236];
tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation locationTitle:@"London"];
[locationArray addObject:tempCoordinate];

as this key "shopsLocation" already contain both.

I really appreciate your help, and thanks for sharing this great library.

How to reload ARViewController view ?

I want to remove old locations from my ARViewController and want to add some new location in the view. how can i achieve this ?

I have tried to remove old locations with this method but it is not removing my old location.

  • (void)removeCoordinate:(ARGeoCoordinate *)coordinate

Can any one help me for this ?

location points(white color dots) not showing in the radar view

location points(white color dots) not showing in the radar view.
ar_locationdots

For your reference i used the following locations:

My current location - 12.829251,80.216331

  • (NSMutableArray *)geoLocations{

    NSMutableArray *locationArray = [[NSMutableArray alloc] init];
    ARGeoCoordinate *tempCoordinate;
    CLLocation *tempLocation;

    tempLocation = [[CLLocation alloc] initWithLatitude:12.829251 longitude:80.216331];
    tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation locationTitle:@"Denver"];
    [locationArray addObject:tempCoordinate];

    tempLocation = [[CLLocation alloc] initWithLatitude:12.827326 longitude:80.219271];
    tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation locationTitle:@"Portland"];
    [locationArray addObject:tempCoordinate];

    tempLocation = [[CLLocation alloc] initWithLatitude:12.826489 longitude:80.219207];
    tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation locationTitle:@"Chicago"];
    [locationArray addObject:tempCoordinate];

    tempLocation = [[CLLocation alloc] initWithLatitude:12.831929 longitude:80.223799];
    tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation locationTitle:@"Austin"];
    [locationArray addObject:tempCoordinate];
    return locationArray;
    }.

please help me to solve this issue

View Controller Doesn't Respect the Parent View Controller's Size

It looks like the ARViewController is mean to be run full screen, but when putting it inside of another viewController or a UINavigationController, it should position elements correctly inside the parent view controller's view.

Screenshots with highlighted positioning issues:

IMG_4982

IMG_4983

Retain loops

Hi,

AugmentedRealityController and ARViewController are not being deallocated beacuse of these retain loops:

AugmentedRealityController should have "rootViewController" set to weak to avoid retain loop with ARViewController.
@Property (nonatomic, weak) UIViewController *rootViewController;

Delegate in MarkerView should also be declared as weak:
__weak id _delegate;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.