1 / 20

Taxonomy of Projections

Taxonomy of Projections. FVFHP Figure 6.10. Taxonomy of Projections. Parallel Projection. Center of projection is at infinity Direction of projection (DOP) same for all points. View Plane. DOP. Angel Figure 5.4. Orthographic Projections. DOP perpendicular to view plane. Front.

sorena
Download Presentation

Taxonomy of Projections

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Taxonomy of Projections FVFHP Figure 6.10

  2. Taxonomy of Projections

  3. Parallel Projection Center of projection is at infinity • Direction of projection (DOP) same for all points View Plane DOP Angel Figure 5.4

  4. Orthographic Projections DOP perpendicular to view plane Front Angel Figure 5.5 Top Side

  5. Orthographic Projection Simple OrthographicTransformation Original world units are preserved • Pixel units are preferred

  6. Perspective Transformation First discovered by Donatello, Brunelleschi, and DaVinci during Renaissance Objects closer to viewer look larger Parallel lines appear to converge to single point

  7. 3-Point Perspective 2-Point Perspective 1-Point Perspective Perspective Projection How many vanishing points? Angel Figure 5.10

  8. Perspective Projection In the real world, objects exhibit perspective foreshortening: distant objects appear smaller The basic situation:

  9. How tall shouldthis bunny be? Perspective Projection When we do 3-D graphics, we think of the screen as a 2-D window onto the 3-D world:

  10. Viewplane X P (x, y, z) x’ = ? (0,0,0) Z Perspective Projection The geometry of the situation is that of similar triangles. View from above: What is x’ ? d

  11. Perspective Projection Desired result for a point [x, y, z, 1]T projected onto the view plane: What could a matrix look like to do this?

  12. A Perspective Projection Matrix Answer:

  13. A Perspective Projection Matrix Example: Or, in 3-D coordinates:

  14. Projection Matrices Now that we can express perspective foreshortening as a matrix, we can compose it onto our other matrices with the usual matrix multiplication End result: a single matrix encapsulating modeling, viewing, and projection transforms

  15. Perspective vs. Parallel Perspective projection • Size varies inversely with distance - looks realistic • Distance and angles are not (in general) preserved • Parallel lines do not (in general) remain parallel Parallel projection • Good for exact measurements • Parallel lines remain parallel • Angles are not (in general) preserved • Less realistic looking

  16. Viewing in OpenGL OpenGL has multiple matrix stacks - transformation functions right-multiply the top of the stack Two most important stacks: GL_MODELVIEW and GL_PROJECTION Points get multiplied by the modelview matrix first, and then the projection matrix GL_MODELVIEW: Object->Camera GL_PROJECTION: Camera->Screen glViewport(0,0,w,h): Screen->Device

  17. OpenGL Example void SetUpViewing(){ // The viewport isn’t a matrix, it’s just state... glViewport( 0, 0, window_width, window_height ); // Set up camera->screen transformation first glMatrixMode( GL_PROJECTION ); glLoadIdentity(); gluPerspective( 60, 1, 1, 1000 ); // fov, aspect, near, far // Set up the model->camera transformation glMatrixMode( GL_MODELVIEW ); gluLookAt( 3, 3, 2, // eye point 0, 0, 0, // look at point 0, 0, 1 ); // up vector glRotatef( theta, 0, 0, 1 ); // rotate the model glScalef( zoom, zoom, zoom ); // scale the model }

  18. A 3D Scene Notice the presence ofthe camera, theprojection plane, and the worldcoordinate axes Viewing transformations define how to acquire the image on the projection plane

  19. Viewing Transformations Create a camera-centered view Camera is at origin Camera is looking along negative z-axis Camera’s ‘up’ is aligned with y-axis

  20. Creating Camera Coordinate Space Specify a point where the camera is located in world space, the eye point Specify a point in world space that we wish to become the center of view, the lookat point Specify a vector in worldspace that we wish to point up in camera image, the up vector Intuitive camera movement

More Related