Tagged Questions
1
vote
1answer
72 views
Why does my perspective trasform come out affine?
I am trying to transform a unit square to an arbitrary quad. Here is the code that gives me the perspective transformation matrix:
bool Math::GetProjectiveMapping(const FPoint& p0, const ...
0
votes
1answer
74 views
How to manage the perspective transformation?
How to convert (x,y,z) coordinates from inside the perspective pyramid, to (x',y',z') coordinates inside the perspective cube? (in a right hand coordinate system)
I tried to multiply this perspective ...
1
vote
1answer
110 views
Ways to “invert Z-axis” in shader-based core-profile OpenGL?
In my hobbyist shader-based (non-FFP) GL (3.2+ core) "engine", everything in world-space and model-space is by design "left-handed" (and to stay that way), so X-axis goes from -1 ("left") to 1 ...
0
votes
1answer
236 views
In OpenGL, what effect does creating a perspective projection matrix have on the coordinates of an object?
I've recently begun learning OpenGL and as far as the communication with the GL and shaders go, I've gained a good competence, but I'm a little unclear regarding the coordinate system.
I'm using ...
2
votes
2answers
340 views
Converting OpenCV's findHomography perspective matrix to iOS' CATransform3D
I'd like to take the perspective transform matrix returned from OpenCV's findHomography function and convert it (either in C++ or Objective-C) to iOS' CATransform3D. I'd like them to be as close as ...
3
votes
1answer
953 views
OpenCV image transformation and perspective change
I'm trying to achieve the following effect, shown here using the perspective tool in GIMP.
original image (620x466 pixels)
transforming the image
What I have is a fixed webcam and would like to ...
1
vote
0answers
91 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
0answers
61 views
how to calculate the sizes/position of a transformed elements into the Z direction
I have this issue that I need to know, before doing any transformation on an element, what the effect is on size (and position) before applying the actual transformations.
I've studied the matrix ...
1
vote
1answer
717 views
Transform Point with Perspective Transform Matrix
I have the coordinates of a quadrilateral which was photographed out of two different perspectives. Furthermore I have the coordinates of one Point but only from one of the two perspectives. I need to ...
0
votes
3answers
388 views
What's wrong with my glOrtho? Negative zero instead of zero
I'm implementing my own matrix math for an OpenGL application. So far, things are largely fine, although difficult. My most recent issue, one I've not had much luck on getting an explanation or a ...
0
votes
1answer
755 views
Projection Matrix
I tried to understand the mathematics behind the projection matrix and I found this page. The matrix from this page:
I found this matrix is similar to the matrix of Xna.
I understood how they got ...
3
votes
2answers
5k views
OpenCV Homography, Transform a point, what is this code doing?
I'm working with a homography calculated by OpenCV. I currently use this homography to transform points using the function below. This function performs the task I require however I have no clue how ...
0
votes
2answers
167 views
OpenGL vector projection inaccurate
I'm creating the perspective projection like this:
function quickViewMatrix( pos, center, w, h )
{
var modelview = mat4.create();
mat4.lookAt( pos, center, [ 0, 0, 1 ], modelview );
var ...
0
votes
1answer
1k views
Why does this Perspective Projection Matrix Calculation not give the correct result?
I can't quite figure this out.
I've got an OpenGL application I'm converting from the old fixed function pipeline to the programmable pipeline, and getting rid of the deprecated functions I've been ...
0
votes
1answer
368 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, ...
1
vote
1answer
2k views
Implementation of gluLookAt and gluPerspective
I've written a small 2D engine in opengl in the process of making a game. I'm using OpenGL ES 2 and the code compiles and runs on iOS and Mac OSX.
Now I'm extending it to support 3D and I'm having a ...
3
votes
2answers
354 views
how to transform 4 points to an xna matrix
I want to develop my own AR-Library in C#. My problem is: I have the 4 corner points of my marker and want to show 3D cubes on the marker (its a multi-marker lib), but i dont know how to get the ...
4
votes
2answers
1k views
square to trapezoid
I know that transforming a square into a trapezoid is a linear transformation, and can be done using the projective matrix, but I'm having a little trouble figuring out how to construct the matrix.
...
1
vote
1answer
947 views
Is this a correct perspective FOV matrix?
I have a perspective FOV, but when rotating, it doesn't "look" correct - Farther objects traverse faster than closer objects, passing them in the middle of the screen.
So: Is this correct? Using ...
2
votes
2answers
180 views
How do I offset an openGL object while still keeping the projection like I'm looking straight at it?
My brain has melted as I've spent forever on this problem.
I need to offset a cube from the origin by two in both the x and y direction however keep the one point perspective like I'm looking ...
1
vote
1answer
2k views
Perspective 3D Projection in Java
I'm working on creating a simple 3D rendering engine in Java. I've messed about and found a few different ways of doing perspective projection, but the only one I got partly working had weird ...
1
vote
1answer
129 views
How can I get a 2d point from a matrix3d in silverlight?
I have a Matrix3D object that defines a 2d plane with perspective.
(think a large painting that has fallen on the floor, away from you)
How can I get the 2d point that relates to the new location ...
1
vote
1answer
247 views
If a world matrix and camera matrix are both identity matrices, can they be ommited?
This is a basic question about the need for world and camera space matrices when each are identity matrices. Can they be ommited when calculating a 2D projection? I'm pretty sure that they can, ...
5
votes
1answer
3k views
Projecting a 3D point to 2D screen space using a perspective camera matrix
I am attempting to project a series of 3D points onto the screen using a perspective camera matrix. I do not have world space (or consider it being an identity matrix) and my camera does not have ...
1
vote
1answer
2k views
perspective view/transformation matrix
How do I do a perspective view transformation in Java? As I understand it there is some magical 4 dimensional matrix I can use which will determine the FOV, Aspect Ratio, and Near and Far viewing ...
1
vote
3answers
1k views
How do I compete the transformation matrix needed to transform a rectangle into a trapezium?
I'm playing around with css transforms and the equivalent filters in IE, and want to simulate perspective by transforming a 2d rectangle into a trapezium.
Specifically, I want the right hand side of ...
0
votes
2answers
1k views
Function for perspective projection of a matrix in C++
Does anyone have a function that returns the perspective projection of a 3x3 matrix in C++?
Matrix Perspective()
{
Matrix m(0, 0, 0); // Creates identity matrix
// Perspective projection ...
