1 / 26

Computer Animation Algorithms and Techniques

Computer Animation Algorithms and Techniques. Technical Background. Spaces and Transformations. Left-handed v. right handed Homogeneous coordinates: 4x4 transformation matrix (TM) Concatenating TMs Basic transformations (TMs) Display pipeline. Display Pipeline. Object Space Data.

kimn
Télécharger la présentation

Computer Animation Algorithms and Techniques

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. Computer AnimationAlgorithms and Techniques Technical Background

  2. Spaces and Transformations Left-handed v. right handed Homogeneous coordinates: 4x4 transformation matrix (TM) Concatenating TMs Basic transformations (TMs) Display pipeline

  3. Display Pipeline Object Space Data Object space to world space (TM) World Space Data World space to eye space (TM) Eye Space Data Perspective (TM) Clipping Perspective Divide Image Space Data Image space to display space (TM) Display Space Data

  4. Representing an orientation Example: fixed angles - rotate around global axes Y Orientation: X Z

  5. Y Z Y X X Z Working with fixed angles and Rotation Matrices (RMs) Orthonormalizing a RM Extracing fixed angles from an orientation Extracing fixed angles from a RM Making a RM from fixed angles Making a RM from transformed unit coordinate system (TUCS)

  6. Transformations in pipeline object -> world: often rigid transforms world -> eye: rigid transforms perspective matrix: uses 4th component of homo. coords perspective divide image -> screen: 2D map to screen coordinates Clipping: procedure that considers view frustum

  7. Error considerations Accumulated round-off error - transform data: transform world data by delta RM update RM by delta RM; apply to object data update angle; form RM; apply to object data orthonormalization rotation matrix: orthogonal, unit-length columns iterate update by taking cross product of 2 vectors scale to unit length considerations of scale miles-to-inches can exeed single precision arithmetic

  8. Orientation Representation Rotation matrix Fixed angles: rotate about global coordinate system Euler angles: rotate about local coordinate system Axis-angle: arbitrary axis and angle Quaternions: mathematically handy axis-angle 4-tuple Exponential map: 3-tuple version of quaternions

  9. Transformation Matrix

  10. Transformation Matrix

  11. Rotation Matrices

  12. Y X Z Fixed Angles Fixed order: e.g., x, y, z; also could be x, y, x Global axes

  13. Y Y X X Z Z Gimbal Lock Fixed angle: e.g., x, y, z

  14. Y X Z Gimbal Lock Fixed order of rotations: x, y, z What do these epsilon rotations do?

  15. Y Y X X Z Z Gimbal Lock Interpolating FA representations does not produce intuitive rotation because of gimbal lock

  16. Y X Z Euler Angles Prescribed order: e.g., x, y, z or x, y, x Rotate around (rotated) local axes Note: fixed angles are same as Euler angles in reverse order and vice versa

  17. Y X Z Axis-Angle Q A Rotate about given axis Euler’s Rotation Theorem OpenGL Fairly easy to interpolate between orientations Difficult to concatenate rotations

  18. Y X Z Axis-angle to rotation matrix Concantenate the following: Rotate A around z to x-z plane Rotate A’ around y to x-axis Rotate theta around x Undo rotation around y-axis Undo rotation around z-axis Q A

  19. Y X Z Axis-angle to rotation matrix A P’ Q P

  20. Y X Z Quaternion Q A Same as axis-angle, but different form Still rotate about given axis Mathematically convenient form Note: in this form v is a scaled version of the given axis of rotation, A

  21. Quaternion Arithmetic Addition Multiplication Inner Product Length

  22. Quaternion Arithmetic Inverse Unit quaternion

  23. Quaternion Represention Vector Transform

  24. Quaternion Geometric Operations

  25. Unit Quaternion Conversions Axis-Angle

  26. Quaternions Avoid gimbal lock Easy to rotate a point Easy to convert to a rotation matrix Easy to concatenate – quaternion multiply Easy to interpolate – interpolate4-tuples How about smoothly (in both space and time) interpolate?

More Related