CS488 - Introduction to Computer Graphics - Lecture 11
Perspective Projection
General projections from 1D to 1D
- Put the projection point anywhere
- on one of the lines.
- at infinity
- The general form of a projection
- Mobius transformation: x' = (a*x + b ) / ( c*x + d )
- Matrix form of the Mobius transformation
/ \
| a b |
| c d |
\ /
The most basic Mobius transformation
/ \
| 1 0 |
| c 1 |
\ /
What does it do?
ininfity -> 1/c
-1/c -> infinity
Projection from 2D to 2D
Draw two planes and a point of projection in 2D.
The most basic general projection
/ \
| 1 0 0 |
| 0 1 0 |
| a b 1 |
\ /
The Mobius form
- x -> x / (ax + by + 1)
- y -> y / (ax + by + 1)
Where things go
- (0, 0) -> (0, 0)
- x = infinity -> (1/a, 0)
- y = infinity -> (0, 1/b)
- ax + by +1 = 0 -> (x, y) -> (infinity, infinity)
What is this (infinity, infinity)?
- In homogeneous coordinates it looks like (x, y, 0).
- This is just a vector; the vectors are directions pointing in
different directions to infinity.
- The line ax + by + 1 = 0 maps to infinity in both directions
- Ax + By = infinity: (x, y) -> (A, B, aB + bA )
We don't want to throw away z, so we'll do a 2D to 2D projection:
- view frustrum to cube centred on the origin
That is,
- Near plane goes to z' = -1.
- Far plane goes to z' = 1
- Top plane goes to x' = 1
- Bottom plane goes to x' = -1
Represent the Mobius transformation as a matrix
/ \
| a b c |
| d e f |
| g h i |
\ /
Then, using the code
- zn: z coordinate of the near plane
- zf: z coordinate of the far plane
- mu: slope of the upper limit of the frustrum
- md: slope of the lower limit of the frustrum
we can map the four planes.
- (x, zn, 1 ) -> (sx', -s, s )
- (x, zf, 1 ) -> (tx'', t, t )
- (mu*z, z, 1 ) -> (u, uz', u )
- (md*z, z, 1 ) -> (-v, vz'', v )
Each of these gives two ordinary linear equations. (Why?) Just the right
number. (Why?) Solve them.
The result is
/ \
| 1 (mu + md) / (mu - md) 0 |
| 0 (zf + fn) / (zf - zn) -2*zf*zn / (zf - zn) |
| 0 1 0 |
\ /
Exercise. Check that this matrix creates the correct Mobius
transformation.
Exercise. Compare this matrix to the one in the notes. It should be the
same with the y row and column deleted. Why is it different?
Exercise. Solve the equations.
Exercise. Show that our 2D to 2D projection, followed by orthogonal
projection is the same as the 2D to 1D projection just above.
Exercise. Extend these results to 3D, and compare to the matrices given in
the notes.
Properties of this Projection
z' -> (z*(zf + zn) -2*zf*zn ) / z*(zf - zn)
- z = zf
- z = zn
- What maps to zero? z' = 2*zf*zn / (zf + zn )
Note the possible numeric problems.
- z -> +0
- z -> -0
z -> infinity, z' = (zf + zn) / (zf - zn)
Projection from 2D to 1D
We can draw it in 2D (Why?)
- three components:
- plane, containing the stuff to be projected
- line, onto which the stuff will be projected
- point of projection
all must lie in the same plane
- projection point in/out of the plane
- line in out/of the plane
How is it done?
- Define a coordinate frame, the view coordinates,
- origin at the projection point
- z-axis perpendicular to the line
- x-axis parallel to the line
- Transform points in the plane into view coordinates
- (xw, zw, 1) -> (xv, zv, 1) using an affine transformation
- In the view coordinates, x' = z' * ( xv / zv )
- But xv = a * xw + b * zw + c, and zv = d * xw + e * zw + f
- Once again we have a Mobius transformation
Return to: