Tagged Questions
0
votes
1answer
101 views
OpenGl es 2.0 2D plane rotation
I have been working on getting some quads with textures to display properly using OpenGL es 2.0 on iPhone platform. I started off following the tutorial here
...
0
votes
0answers
33 views
Reconsturcting a 2D image in a 3D scene
Here is a brief explanation of my problem:
I have a 2D patch(A) which I want to map onto a 2D photograph(B) of a 3D scene.
In the 2D photograph I have collected and can find and recognize 10 points ...
0
votes
2answers
99 views
MATLAB: Why my Pixel Indices are so different from that in Spatial Coordinates
The question is revised to make it more specific and constructive.
I am doing imtransform, yet the xdata and ydata are very much different from that of size(output).
[ output, xdata, ydata ] = ...
0
votes
1answer
114 views
what program is responsible for projection in computer graphics
by projection I mean, taking 3d model data, camera data, etc, and projecting the scene into a flat 2d image that would be displayed.
Does directx / opengl do this? Do they actually do it for the ...
1
vote
1answer
138 views
Perspective Issue with 3D coordinate system in OpenGL
I'm currently facing some perspective issues when trying to render the axes of a coordinate system into my scene. For these axes I draw three orthogonal lines that go through the center of my 3D cube.
...
2
votes
2answers
1k views
Why does OpenGL have a far clipping plane, and what idioms are used to deal with this?
I've been learning OpenGL, and the one topic that continues to baffle me is the far clipping plane. While I can understand the reasoning behind the near clipping plane, and the side clipping planes ...
0
votes
1answer
133 views
Curve produced by perspective transformation applied to circular arc
I am trying to produce a drawing of a 3D sphere within a canvas which I would like to render quickly: My target is real-time performance for a small (300px square) canvas on iPad.
Most of the demos ...
1
vote
0answers
121 views
Projecting 3D Point onto Viewport, Dealing With Negative Depth
I did a lot of searching but didn't find any solutions to this problem.
I have a viewport where the center (where we are looking from) is always at (0,0,0). We are always looking in the direction of ...
1
vote
1answer
646 views
Clip matrix for 3D Perspective Projection
I am trying to create a simple 3D graphics engine and have found and used the equations I found here: http://en.wikipedia.org/wiki/3D_projection#cite_note-0. (I have calculations for Dx, Dy, Dz and ...
3
votes
1answer
373 views
Perspective projection issues on zoom
I have been working on a perspective projection rendering demo using javascript, recently I added perspective projection and it works as it should except when I zoom in.
Here is a picture of this ...
0
votes
2answers
783 views
Orthographic projection of a sphere to get a circle (OpenGL — newbie)
I am trying to draw a very simple, black and white stick figure whose head is a sphere. The background is black and I am drawing with white color. The orthographic projection of the sphere head should ...
0
votes
2answers
257 views
z-value of a projected 3d point
After a 3d point has been transformed by a perspective projection matrix, what do the Z coordinate stand for? Distance from the 'eye'? Distance from the near clip plane? None of this?
Edit
I've set ...
0
votes
2answers
1k views
Perspective/orthographic projection conversion in XNA?
I'm drawing some geometry in orthographic projection in XNA for a sidescroller type game. What I want to do is to render background geometry in perspective projection.
However I obviously need the ...
1
vote
1answer
459 views
Resource for understanding view, projection, 'virtual camera' in OpenGL or graphics in general
I noticed most resources either assume you know a lot already or assume you know math of professional level or assume you're going to find other resources to fill gaps.
Is there a resource that takes ...
24
votes
5answers
11k views
correcting fisheye distortion programmatically
BOUNTY STATUS UPDATE:
I discovered how to map a linear lens, from destination coordinates to source coordinates.
I actually struggle to reverse it, and to map source coordinates to destination ...
5
votes
3answers
1k views
Why does sign matter in opengl projection matrix
I'm working on a computer vision problem which requires rendering a 3d model using a calibrated camera. I'm writing a function that breaks the calibrated camera matrix into a modelview matrix and a ...
3
votes
2answers
8k views
Formula for a orthogonal projection matrix?
I've been looking around a bit and can't seem to find just what I"m looking for. I've found "canonical formulas," but what's the best way to use these? Do I have to scale every single vertex down? Or ...
18
votes
7answers
18k views
Calculating a LookAt matrix
I'm in the midst of writing a 3d engine and I've come across the LookAt algorithm described in the DirectX documentation:
zaxis = normal(At - Eye)
xaxis = normal(cross(Up, zaxis))
yaxis = ...
