Rotations and Translations. Representing a Point 3D A tri-dimensional point A is a reference coordinate system here.

Slides:



Advertisements
Similar presentations
Principles of Computer-Aided Design and Manufacturing Second Edition 2004 ISBN Author: Prof. Farid. Amirouche University of Illinois-Chicago.
Advertisements

Robot Modeling and the Forward Kinematic Solution
Robot Modeling and the Forward Kinematic Solution
Computer Graphics Lecture 4 Geometry & Transformations.
Denavit-Hartenberg Convention
Kinematics Pose (position and orientation) of a Rigid Body
The Concepts of Orientation/Rotation ‘Transformations’ ME Lecture Series 2 Fall 2011, Dr. R. Lindeke 1.
2D Geometric Transformations
Chapter 4.1 Mathematical Concepts
Chapter 4.1 Mathematical Concepts. 2 Applied Trigonometry Trigonometric functions Defined using right triangle  x y h.
Ch. 2: Rigid Body Motions and Homogeneous Transforms
CSCE 590E Spring 2007 Basic Math By Jijun Tang. Applied Trigonometry Trigonometric functions  Defined using right triangle  x y h.
Ch. 4: Velocity Kinematics
3-D Geometry.
Introduction to Robotics Lecture II Alfred Bruckstein Yaniv Altshuler.
Basic Math Vectors and Scalars Addition/Subtraction of Vectors Unit Vectors Dot Product.
Screw Rotation and Other Rotational Forms
CAP4730: Computational Structures in Computer Graphics
2D Transformations. World Coordinates Translate Rotate Scale Viewport Transforms Hierarchical Model Transforms Putting it all together.
Rotations and Translations
Chapter 4.1 Mathematical Concepts
Vectors A vector is a quantity that is characterized by both magnitude and direction. Vectors are represented by arrows. The length of the arrow represents.
Geometric Transformation. So far…. We have been discussing the basic elements of geometric programming. We have discussed points, vectors and their operations.
15/09/2015handout 31 Robot Kinematics Logics of presentation: Kinematics: what Coordinate system: way to describe motion Relation between two coordinate.
1 Preview At least two views are required to access the depth of a scene point and in turn to reconstruct scene structure Multiple views can be obtained.
CS 480/680 Computer Graphics Transformations Dr. Frederick C Harris, Jr.
Chapter 2 Robot Kinematics: Position Analysis
Lecture Notes: Computer Graphics.
Rotations and Translations
Rotations and Translations 1. Mathematical terms The inner product of 2 vectors a,b is defined as: The cross product of 2 vectors is defined as: A unit.
Transformations Jehee Lee Seoul National University.
Warm Up 1. Reflect the preimage using y=x as the line of reflection given the following coordinates: A(-2, 4), B(-4, -2), C(-5, 6) 2. Rotate the figure.
Spatial Descriptions and Transformations Sebastian van Delden USC Upstate
Computer Graphics, KKU. Lecture 51 Transformations Given two frames in an affine space of dimension n, we can find a ( n+1 ) x ( n +1) matrix that.
T. Bajd, M. Mihelj, J. Lenarčič, A. Stanovnik, M. Munih, Robotics, Springer, 2010 GEOMETRIC DESCRIPTION OF THE ROBOT MECHANISM T. Bajd and M. Mihelj.
1 Computer Graphics Week9 -3D Geometric Transformation.
Robot Kinematics: Position Analysis 2.1 INTRODUCTION  Forward Kinematics: to determine where the robot ’ s hand is? (If all joint variables are known)
Geometrical Transformations 2 Adapted from Fundamentals of Interactive Computer Graphics, Foley and van Dam, pp , by Geb Thomas.
What is Kinematics. Kinematics studies the motion of bodies.
1 Graphics CSCI 343, Fall 2015 Lecture 10 Coordinate Transformations.
CSCE 452 Intro to Robotics CSCE 452: Lecture 1 Introduction, Homogeneous Transformations, and Coordinate frames.
Chapter 2: Description of position and orientation Faculty of Engineering - Mechanical Engineering Department ROBOTICS Outline: Introduction. Descriptions:
Geometric Transformations UBI 516 Advanced Computer Graphics Aydın Öztürk
Euler Angles This means, that we can represent an orientation with 3 numbers Assuming we limit ourselves to 3 rotations without successive rotations about.
Computer Graphics I, Fall 2010 Transformations.
Forward Kinematics Where is my hand ?. Examples Denavit-Hartenberg Specialized description of articulated figures (joints) Each joint has only one degree.
CHAPTER 4 TRANSFORMATIONS  What you will learn:  Perform translations  Perform compositions  Solve real-life problems involving compositions 4.1.
Chapter 9 Properties of Transformations Warren Luo Matthew Yom.
CHAPTER 4 TRANSFORMATIONS  What you will learn:  Perform translations  Perform compositions  Solve real-life problems involving compositions 4.1.
CS 551 / 645: Introductory Computer Graphics Viewing Transforms.
Chapter 4.1 Mathematical Concepts. 2 Applied Trigonometry "Old Henry And His Old Aunt" Defined using right triangle  x y h.
Computer Graphic 2 D Transformation.
Robotics Chapter 3 – Forward Kinematics
Lecture 10 Geometric Transformations In 3D(Three- Dimensional)
HOMOGENEOUS REPRESENTATION
Spatcial Description & Transformation
PROPERTIES OF THE JACOBIAN
Mobile Robot Kinematics
CHAPTER 2 FORWARD KINEMATIC 1.
Chapter IV Spaces and Transforms
CPSC 452 Spatial Descriptions and Coordinate Transform
Unit 7: Transformations
Rigid Body Transformations
Rotation: all points in the original figure rotate, or turn, an identical number of degrees around a fixed point.
Transformation Operators
Derivation of the 2D Rotation Matrix
Rigid Body Transformations
Translation in Homogeneous Coordinates
Presentation transcript:

Rotations and Translations

Representing a Point 3D A tri-dimensional point A is a reference coordinate system here

Representing a Point 3D (cont.) Once a coordinate system is fixed, we can locate any point in the universe with a 3x1 position vector. The components of P in {A} have numerical values which indicate distances along the axes of {A}. To describe the orientation of a body we will attach a coordinate system to the body and then give a description of this coordinate system relative to the reference system.

Example

Description of Orientation is a unit vector in B is a coordinate of a unit vector of B in coordinates system A (i.e. the projection of onto the unit direction of its reference)

Example Rotating B relative to A around Z by

Example In general:

Using Rotation Matrices

Translation

Combining Rotation and Translation

What is a Frame ? A set of four vectors giving position and orientation information. The description of the frame can be thought as a position vector and a rotation matrix. Frame is a coordinate system, where in addition to the orientation we give a position vector which locates its origin relative to some other embedding frame.

Arrows Convention An Arrow - represents a vector drawn from one origin to another which shows the position of the origin at the head of the arrow in terms of the frame at the tail of the arrow. The direction of this locating arrow tells us that {B} is known relative to {A} and not vice versa. Mapping a vector from one frame to another – the quantity itself is not changed, only its description is changed.

R otating a frame B relative to a frame A about Z axis by degrees and moving it 10 units in direction of X and 5 units in the direction of Y. What will be the coordinates of a point in frame A if in frame B the point is : [3, 7, 0] T ? Example

Extension to 4x4 We can define a 4x4 matrix operator and use a 4x1 position vector

Example If we use the above example we can see that:

P in the coordinate system A

Formula

Compound Transformation

Several Combinations

Example

Notes Homogeneous transforms are useful in writing compact equations; a computer program would not use them because of the time wasted multiplying ones and zeros. This representation is mainly for our convenience. For the details turn to chapter 2.