Computer Graphics Fall 2006 - PowerPoint PPT Presentation

1 / 31
About This Presentation
Title:

Computer Graphics Fall 2006

Description:

Rows of matrix are 3 unit vectors of new coord frame ... Constructing a coordinate frame. We want to position camera at origin, looking down Z dirn ... – PowerPoint PPT presentation

Number of Views:53
Avg rating:3.0/5.0
Slides: 32
Provided by: ravirama
Category:

less

Transcript and Presenter's Notes

Title: Computer Graphics Fall 2006


1
Computer Graphics (Fall 2006)
  • COMS 4160, Lecture 4 Transformations 2

http//www.cs.columbia.edu/cs4160
2
To Do
  • Start doing assignment 1
  • Time is short, but needs only little code Due
    Thu Sep 21, 1159pm
  • Ask questions or clear misunderstandings by next
    lecture
  • Specifics of HW 1
  • Last lecture covered basic material on
    transformations in 2D. You likely need this
    lecture though to understand full 3D
    transformations
  • Last lecture had some complicated stuff on 3D
    rotations. You only need final formula (actually
    not even that, setrot function available)
  • gluLookAt derivation this lecture should help
    clarifying some ideas
  • Read bulletin board and webpage!!

3
Outline
  • Translation Homogeneous Coordinates
  • Transforming Normals
  • Rotations revisited coordinate frames
  • gluLookAt (quickly)

Exposition is slightly different than in the
textbook
4
Translation
  • E.g. move x by 5 units, leave y, z unchanged
  • We need appropriate matrix. What is it?

transformation_game.jar
5
Homogeneous Coordinates
  • Add a fourth homogeneous coordinate (w1)
  • 4x4 matrices very common in graphics, hardware
  • Last row always 0 0 0 1 (until next lecture)

6
Representation of Points (4-Vectors)
  • Homogeneous coordinates
  • Divide by 4th coord (w) to get
    (inhomogeneous) point
  • Multiplication by w gt 0, no effect
  • Assume w 0. For w gt 0, normal

    finite point. For w 0, point at infinity
    (used for vectors
    to stop translation)

7
Advantages of Homogeneous Coords
  • Unified framework for translation, viewing, rot
  • Can concatenate any set of transforms to 4x4
    matrix
  • No division (as for perspective viewing) till end
  • Simpler formulas, no special cases
  • Standard in graphics software, hardware

8
General Translation Matrix
9
Combining Translations, Rotations
  • Order matters!! TR is not the same as RT (demo)
  • General form for rigid body transforms
  • We show rotation first, then translation
    (commonly used to position objects) on next
    slide. Slide after that works it out the other
    way
  • simplestGlut.exe

transformation_game.jar
10
Combining Translations, Rotations
transformation_game.jar
11
Combining Translations, Rotations
transformation_game.jar
12
Outline
  • Translation Homogeneous Coordinates
  • Transforming Normals
  • Rotations revisited coordinate frames
  • gluLookAt (quickly)

Exposition is slightly different than in the
textbook
13
Normals
  • Important for many tasks in graphics like
    lighting
  • Do not transform like points e.g. shear
  • Algebra tricks to derive correct transform

Incorrect to transform like points
14
Finding Normal Transformation
15
Outline
  • Translation Homogeneous Coordinates
  • Transforming Normals
  • Rotations revisited coordinate frames
  • gluLookAt (quickly)

Section 6.5 of textbook
16
Coordinate Frames
  • All of discussion in terms of operating on points
  • But can also change coordinate system
  • Example, motion means either point moves
    backward, or coordinate system moves forward

17
Coordinate Frames In general
  • Can differ both origin and orientation (e.g. 2
    people)
  • One good example World, camera coord frames (H1)

18
Coordinate Frames Rotations
19
Geometric Interpretation 3D Rotations
  • Rows of matrix are 3 unit vectors of new coord
    frame
  • Can construct rotation matrix from 3 orthonormal
    vectors

20
Axis-Angle formula (summary)
21
Outline
  • Translation Homogeneous Coordinates
  • Transforming Normals
  • Rotations revisited coordinate frames
  • gluLookAt (quickly)

Not fully covered in textbooks. However, look at
sections 6.5 and 7.2.1 Weve already covered the
key ideas, so we go over it quickly showing how
things fit together
22
Case Study Derive gluLookAt
  • Defines camera, fundamental to how we view images
  • gluLookAt(eyex, eyey, eyez, centerx, centery,
    centerz, upx, upy, upz)
  • Camera is at eye, looking at center, with the up
    direction being up
  • May be important for HW1
  • Combines many concepts discussed in lecture so
    far
  • Core function in OpenGL for later assignments

23
Steps
  • gluLookAt(eyex, eyey, eyez, centerx, centery,
    centerz, upx, upy, upz)
  • Camera is at eye, looking at center, with the up
    direction being up
  • First, create a coordinate frame for the camera
  • Define a rotation matrix
  • Apply appropriate translation for camera (eye)
    location

24
Constructing a coordinate frame?
  • We want to associate w with a, and v with b
  • But a and b are neither orthogonal nor unit norm
  • And we also need to find u

from lecture 2
25
Constructing a coordinate frame
  • We want to position camera at origin, looking
    down Z dirn
  • Hence, vector a is given by eye center
  • The vector b is simply the up vector

26
Steps
  • gluLookAt(eyex, eyey, eyez, centerx, centery,
    centerz, upx, upy, upz)
  • Camera is at eye, looking at center, with the up
    direction being up
  • First, create a coordinate frame for the camera
  • Define a rotation matrix
  • Apply appropriate translation for camera (eye)
    location

27
Geometric Interpretation 3D Rotations
  • Rows of matrix are 3 unit vectors of new coord
    frame
  • Can construct rotation matrix from 3 orthonormal
    vectors

28
Steps
  • gluLookAt(eyex, eyey, eyez, centerx, centery,
    centerz, upx, upy, upz)
  • Camera is at eye, looking at center, with the up
    direction being up
  • First, create a coordinate frame for the camera
  • Define a rotation matrix
  • Apply appropriate translation for camera (eye)
    location

29
Translation
  • gluLookAt(eyex, eyey, eyez, centerx, centery,
    centerz, upx, upy, upz)
  • Camera is at eye, looking at center, with the up
    direction being up
  • Cannot apply translation after rotation
  • The translation must come first (to bring camera
    to origin) before the rotation is applied

30
Combining Translations, Rotations
31
gluLookAt final form
Write a Comment
User Comments (0)
About PowerShow.com