0
24kviews
What are Parallel and Perspective projections and derive the matrix for perspective projection.

Mumbai university > Comp > SEM 4 > Computer Graphics

Marks: 10M

Year: May 2015, Dec 2015

1 Answer
3
167views

Parallel Projection

  1. Parallel projection discards z-coordinate and parallel lines from each vertex on the object are extended until they intersect the view plane.

  2. In parallel projection, we specify a direction of projection instead of center of projection.

  3. In parallel projection, the distance from the center of projection to project plane is infinite.

  4. In this type of projection, we connect the projected vertices by line segments which correspond to connections on the original object.

  5. Parallel projections are less realistic, but they are good for exact measurements.

  6. In this type of projections, parallel lines remain parallel and angles are not preserved.

  7. Various types of parallel projections are shown in the following hierarchy.

enter image description here

a) Orthographic Projection

  • In orthographic projection the direction of projection is normal to the projection of the plane.

  • There are three types of orthographic projections −

    • Front Projection
    • Top Projection
    • Side Projection

enter image description here

b) Oblique Projection

  • In orthographic projection, the direction of projection is not normal to the projection of plane.

  • In oblique projection, we can view the object better than orthographic projection.

  • There are two types of oblique projections − Cavalier and Cabinet.

  • The Cavalier projection makes 45° angle with the projection plane.

  • The projection of a line perpendicular to the view plane has the same length as the line itself in Cavalier projection.

  • In a cavalier projection, the foreshortening factors for all three principal directions are equal.

  • The Cabinet projection makes 63.4° angle with the projection plane.

  • In Cabinet projection, lines perpendicular to the viewing surface are projected at ½ their actual length.

  • Both the projections are shown in the following figure –

enter image description here

Perspective Projection

  1. In perspective projection, the distance from the center of projection to project plane is finite and the size of the object varies inversely with distance which looks more realistic.

  2. The distance and angles are not preserved and parallel lines do not remain parallel.

  3. Instead, they all converge at a single point called center of projection or projection reference point.

  4. There are 3 types of perspective projections which are shown in the following chart.

    • One point perspective projection is simple to draw.

    • Two point perspective projection gives better impression of depth.

    • Three point perspective projection is most difficult to draw.

enter image description here

  1. The following figure shows all the three types of perspective projection

enter image description here

Matrix for Perspective Projection

  • Homogenous coordinates allow to work with the translation as the rotation and scale

    • In order to get a square matrix, a new row is added and a new coordinate w’ appears

    • If the last row is [0 0 1] then w’ = 1

    • If w’<>1 it is projected over the plane w=1, that’s called the homogenous division

    • In the case of 3D, we work with 4 components and the 3D point we get is [x/w, y/w, z/w, 1]

enter image description here

  • Simple projection matrices

    • A LEFT - HANDED system is used

    • CP at the origin of coordinates and PP perpendicular to Z at a distance of d

  • Simple perspective projection

enter image description here

Please log in to add an answer.