How to convert a 3D point into 2D perspective projection? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:04:28Z http://stackoverflow.com/feeds/question/724219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/724219/how-to-convert-a-3d-point-into-2d-perspective-projection 0 How to convert a 3D point into 2D perspective projection? Zachary 2009-04-07T05:23:05Z 2009-05-16T02:10:33Z <p>I am currently working with using Bezier curves and surfaces to draw the famous Utah teapot. Using Bezier patches of 16 control points, I have been able to draw the teapot and display it using a 'world to camera' function which gives the ability to rotate the resulting teapot, and am currently using an orthographic projection.</p> <p>The result is that I have a 'flat' teapot, which is expected as the purpose of an orthographic projection is to preserve parallel lines.</p> <p>However, I would like to use a perspective projection to give the teapot depth. My question is, how does one take the 3D xyz vertex returned from the 'world to camera' function, and convert this into a 2D coordinate. I am wanting to use the projection plane at z=0, and allow the user to determine the focal length and image size using the arrow keys on the keyboard.</p> <p>I am programming this in java and have all of the input event handler set up, and have also written a matrix class which handles basic matrix multiplication. I've been reading through wikipedia and other resources for a while, but I can't quite get a handle on how one performs this transformation. </p> <p>-Thanks</p> http://stackoverflow.com/questions/724219/how-to-convert-a-3d-point-into-2d-perspective-projection/724243#724243 1 Answer by endtime for How to convert a 3D point into 2D perspective projection? endtime 2009-04-07T05:33:06Z 2009-04-07T05:33:06Z <p>I think <a href="http://stackoverflow.com/questions/701504/perspective-projection-help-a-noob/701978#701978">this</a> will probably answer your question. Here's what I wrote there:</p> <blockquote> <p>Here's a very general answer. Say the camera's at (Xc, Yc, Zc) and the point you want to project is P = (X, Y, Z). The distance from the camera to the 2D plane onto which you are projecting is F (so the equation of the plane is Z-Zc=F). The 2D coordinates of P projected onto the plane are (X', Y').</p> <p>Then, very simply:</p> <p>X' = ((X - Xc) * (F/Z)) + Xc</p> <p>Y' = ((Y - Yc) * (F/Z)) + Yc</p> <p>If your camera is the origin, then this simplifies to:</p> <p>X' = X * (F/Z)</p> <p>Y' = Y * (F/Z)</p> </blockquote> http://stackoverflow.com/questions/724219/how-to-convert-a-3d-point-into-2d-perspective-projection/724245#724245 0 Answer by j_random_hacker for How to convert a 3D point into 2D perspective projection? j_random_hacker 2009-04-07T05:33:20Z 2009-04-07T05:33:20Z <p>To obtain the perspective-corrected co-ordinates, just divide by the <code>z</code> co-ordinate:</p> <pre><code>xc = x / z yc = y / z </code></pre> <p>The above works assuming that the camera is at <code>(0, 0, 0)</code> and you are projecting onto the plane at <code>z = 1</code> -- you need to translate the co-ords relative to the camera otherwise.</p> <p>There are some complications for curves, insofar as projecting the points of a 3D Bezier curve will not in general give you the same points as drawing a 2D Bezier curve through the projected points.</p> http://stackoverflow.com/questions/724219/how-to-convert-a-3d-point-into-2d-perspective-projection/724248#724248 1 Answer by MarkusQ for How to convert a 3D point into 2D perspective projection? MarkusQ 2009-04-07T05:34:25Z 2009-04-07T05:34:25Z <p>I'm not sure at what level you're asking this question. It sounds as if you've found the formulas online, and are just trying to understand what it does. On that reading of your question I offer:</p> <ul> <li>Imagine a ray from the viewer (at point V) directly towards the center of the projection plane (call it C).</li> <li>Imagine a second ray from the viewer to a point in the image (P) which also intersects the projection plane at some point (Q)</li> <li>The viewer and the two points of intersection on the view plane form a triangle (VCQ); the sides are the two rays and the line between the points in the plane.</li> <li>The formulas are using this triangle to find the coordinates of Q, which is where the projected pixel will go</li> </ul> http://stackoverflow.com/questions/724219/how-to-convert-a-3d-point-into-2d-perspective-projection/866749#866749 3 Answer by Mads Elvheim for How to convert a 3D point into 2D perspective projection? Mads Elvheim 2009-05-15T02:26:19Z 2009-05-16T02:10:33Z <p>I see this question is a bit old, but I decided to give an answer anyway for those who find this question by searching.<br /> The standard way to represent 2D/3D transformations nowadays is by using <strong>homogeneous coordinates</strong>. <em>[x,y,w]</em> for 2D, and <em>[x,y,z,w]</em> for 3D. Since you have three axes in 3D as well as translation, that information fits perfectly in a 4x4 transformation matrix. I will use column-major matrix notation in this explanation. All matrices are 4x4 unless noted otherwise.<br /> The stages from 3D points and to a rasterized point, line or polygon looks like this: </p> <ol> <li>Transform your 3D points with the inverse camera matrix, followed with whatever transformations they need. If you have surface normals, transform them as well but with w set to zero, as you don't want to translate normals. The matrix you transform normals with must be <em>isotropic</em>; scaling and shearing makes the normals malformed.</li> <li>Transform the point with a clip space matrix. This matrix scales x and y with the field-of-view and aspect ratio, scales z by the near and far clipping planes, and plugs the 'old' z into w. After the transformation, you should divide x, y and z by w. This is called the <em>perspective divide</em>.</li> <li>Now your vertices are in clip space, and you want to perform clipping so you don't render any pixels outside the viewport bounds. <strong>Sutherland-Hodgeman clipping</strong> is the most widespread clipping algorithm in use.</li> <li>Transform x and y with respect to w and the half-width and half-height. Your x and y coordinates are now in viewport coordinates. Z is discarded, but w and 1/z is usually saved because they are needed to do perspective correct interpolation across the polygon surface. z is not linear across the surface, but 1/z is. This stage is the actual projection, because z isn't used as a component in the position any more. <h2>The algorithms:</h2></li> </ol> <h3>Calculation of field-of-view</h3> <p>This calculates the field-of view. Whether tan takes radians or degrees is irrelevant, but <em>angle</em> must match. Notice that the result reaches infinity as <em>angle</em> nears 180 degrees. This is a singularity, as it is impossible to have a focal point that wide. If you want numerical stability, keep <em>angle</em> less or equal to 179 degrees.</p> <pre><code>fov = 1.0 / tan(angle/2.0) </code></pre> <p>Also notice that 1.0 / tan(45) = 1. Someone else here suggested to just divide by z. The result here is clear. You would get a 90 degree FOV and an aspect ratio of 1:1. Using homogeneous coordinates like this has several other advantages as well; we can for example perform clipping against the near and far planes without treating it as a special case.</p> <h3>Calculation of the clip matrix</h3> <p>This is the layout of the clip matrix. <em>aspectRatio</em> is Width/Height. So the FOV for the x component is scaled based on FOV for y. Far and near are coefficients which are the distances for the near and far clipping planes. </p> <pre><code>[fov * aspectRatio][ 0 ][ 0 ][ 0 ] [ 0 ][ fov ][ 0 ][ 0 ] [ 0 ][ 0 ][(far+near)/(far-near) ][ 1 ] [ 0 ][ 0 ][(2*near*far)/(near-far)][ 0 ] </code></pre> <h3>Screen Projection</h3> <p>After clipping, this is the final transformation to get our screen coordinates.</p> <pre><code>x' = (x * Width ) / (2.0 * w) + halfWidth; y' = (y * Height) / (2.0 * w) + halfHeight; </code></pre> <h2>Trivial example implementation in C++</h2> <pre><code>#include &lt;vector&gt; #include &lt;cmath&gt; #include &lt;stdexcept&gt; #include &lt;algorithm&gt; struct Vector { Vector() : x(0),y(0),z(0),w(1){} Vector(float a, float b, float c) : x(a),y(b),z(c),w(1){} /* Assume proper operator overloads here, with vectors and scalars */ float Length() const { return std::sqrt(x*x + y*y + z*z); } Vector Unit() const { const float epsilon = 1e-6; float mag = Length(); if(mag &lt; epsilon){ std::out_of_range e(""); throw e; } return *this / mag; } }; inline float Dot(const Vector&amp; v1, const Vector&amp; v2) { return v1.x*v2.x + v1.y*v2.y + v1.z*v2.z; } class Matrix { public: Matrix() : data(16) { Identity(); } void Identity() { std::fill(data.begin(), data.end(), float(0)); data[0] = data[5] = data[10] = data[15] = 1.0f; } float&amp; operator[](size_t index) { if(index &gt;= 16){ std::out_of_range e(""); throw e; } return data[index]; } Matrix operator*(const Matrix&amp; m) const { Matrix dst; int col; for(int y=0; y&lt;4; ++y){ col = y*4; for(int x=0; x&lt;4; ++x){ for(int i=0; i&lt;4; ++i){ dst[x+col] += m[i+col]*data[x+i*4]; } } } return dst; } Matrix&amp; operator*=(const Matrix&amp; m) { *this = (*this) * m; return *this; } /* The interesting stuff */ void SetupClipMatrix(float fov, float aspectRatio, float near, float far) { Identity(); float f = 1.0f / std::tan(fov * 0.5f); data[0] = f*aspectRatio; data[5] = f; data[10] = (far+near) / (far-near); data[11] = 1.0f; /* this 'plugs' the old z into w */ data[14] = (2.0f*near*far) / (near-far); data[15] = 0.0f; } std::vector&lt;float&gt; data; }; inline Vector operator*(const Vector&amp; v, const Matrix&amp; m) { Vector dst; dst.x = v.x*m[0] + v.y*m[4] + v.z*m[8 ] + v.w*m[12]; dst.y = v.x*m[1] + v.y*m[5] + v.z*m[9 ] + v.w*m[13]; dst.z = v.x*m[2] + v.y*m[6] + v.z*m[10] + v.w*m[14]; dst.w = v.x*m[3] + v.y*m[7] + v.z*m[11] + v.w*m[15]; return dst; } typedef std::vector&lt;Vector&gt; VecArr; VecArr ProjectAndClip(int width, int height, float near, float far, const VecArr&amp; vertex) { float halfWidth = (float)width * 0.5f; float halfHeight = (float)height * 0.5f; float aspect = (float)width / (float)height; Vector v; Matrix clipMatrix; VecArr dst; clipMatrix.SetupClipMatrix(60.0f * (M_PI / 180.0f), aspect, near, far); /* Here, after the perspective divide, you perform Sutherland-Hodgeman clipping by checking if the x, y and z components are inside the range of [-w, w]. One checks each vector component seperately against each plane. Per-vertex data like colours, normals and texture coordinates need to be linearly interpolated for clipped edges to reflect the change. If the edge (v0,v1) is tested against the positive x plane, and v1 is outside, the interpolant becomes: (v1.x - w) / (v1.x - v0.x) I skip this stage all together to be brief. */ for(VecArr::iterator i=vertex.begin(); i!=vertex.end(); ++i){ v = (*i) * clipMatrix; v /= v.w; /* Don't get confused here. I assume the divide leaves v.w alone.*/ dst.push_back(v); } /* TODO: Clipping here */ for(VecArr::iterator i=dst.begin(); i!=dst.end(); ++i){ i-&gt;x = (i-&gt;x * (float)width) / (2.0f * i-&gt;w) + halfWidth; i-&gt;y = (i-&gt;y * (float)height) / (2.0f * i-&gt;w) + halfHeight; } return dst; } </code></pre> <p>If you still ponder about this, the OpenGL specification is a really nice reference for the maths involved. The DevMaster forums at <a href="http://www.devmaster.net/" rel="nofollow">http://www.devmaster.net/</a> have a lot of nice articles related to software rasterizers as well.</p>