1
vote
0answers
34 views

Transform Latitude,Longitude-Position on screen in augmented reality app

This is my first post on this forum and I'm very new in programming. I want to build an application where I can see exactly where some gps-values are on my phone. I know a lot of applications, like ...
0
votes
0answers
48 views
+100

Transform GPS-Points to Screen-Points with Perspective Projection in Android

Currently I'm writing an augmented reality app and I have some problems to get the objects on my screen. It's very frustrating for me that I'm not able to transform gps-points to the correspending ...
1
vote
0answers
75 views

Rendering a textured square OK. Moving my object makes it warp and appear as if it was rotated

Is there any obvious mistakes in this? My square renders ok, but when I try to move 9it left/right/up/down/ its edges get streched out into infinity, as if some super high FOV was used.. Which is ...
0
votes
2answers
190 views

android, Project does not appear in the File Explorer

I would like to know if anyone of you knows the reason for project folder with Preferences, Database and libs, do not appear in the DDMS perspective when project is run on a real device.
0
votes
0answers
171 views

OpenGL ES 1.0 glDepthRange visual appearence ? Reduce Depth of distance Objects

I currently have objects positioned in 'real' world positions (unit=meter). The problem is I want an object viewable a few kilometres away. When OpenGL scales this object, its too small and barely ...
3
votes
2answers
309 views

Perspective Transformation

I am given the X, Y, Z locations of 4 corners in a rectangle, and their X, Y locations on a picture. I would like to use these locations to find the camera's angle with the rectangle. For instance, if ...
0
votes
1answer
765 views

Convert FOV angles to perspective projection parameters

I have a program that gets the FOV angle of the device's rear-facing camera, which returns the horizontal and vertical angle in degrees like so: 54.8 42.5 Is there an easy conversion to apply to ...
0
votes
1answer
191 views

Close objects look stretched / changing vanishing points?

I have built a very nice Rubik's Cube in OpenGl for my android application. Unfortunately it looks a bit stretched when I bring it closer to the camera. It looks like this: I'd like to have my ...
0
votes
1answer
78 views

Want to have several alternative perspective options in GL

So I've set up the perspective for my view in the onSurfaceCreate method using this: float size = .01f * (float) Math.tan(Math.toRadians(45.0) / 2); float ratio = _width / _height; // ...
1
vote
2answers
399 views

Setting up an OpenGL ES renderer for 2D?

I'm trying to set up the renderer so that regardless of device, the view is a simple 2D field with the top of the screen at 1.0f and the bottom at -1.0f. I can't seem to get it quite right, I've been ...
0
votes
1answer
351 views

Where is perspectiveM method in android.opengl.Matrix?

How can i call perspectiveM static method in Matrix class? As said here: http://developer.android.com/reference/android/opengl/Matrix.html Сode completion suggests me frustumM, invertM, length, ...
4
votes
1answer
728 views

Viewport boundaries on any resolution with OpenGL ES

I'm having difficulties understanding about the OpenGL perspective view. I've read tons of information however it didn't help me trying to achieve what I'm after. Which is making sure my 3d scene is ...
0
votes
1answer
423 views

OpenGL and perspective vs polygon/model size

I've been mucking around in OpenGL on Android for a while and feel like I've been able to figure a lot of things out. I've been working from the book "Hello, Android!" and the Android port of the NeHe ...