Lecture 7/8 2D transformation and projection Flashcards
What transformations can be represented by p_prime
= M x p
Visualise a 2D transform to scale an image
Visualise a 2D transform to stretch an image
Visualise a 2D transform to Flip an image horizontally
Visualise a 2D transform to Shear / Skew an image
Visualise a 2D transform to rotate an image ANTI-CLOCKWISE
Visualise a 2D transform to rotate an image CLOCKWISE
How do you go from a set of homogeneous points to a set of un-homogeneous points?
Divide by 3rd point
Visualise a 2D transform to translate an image
Visualise a rotation followed translation by matrix
p0 = ( T R ) p
Visualise a translation followed by rotation matrix ANTI-CLOCKWISE
p0 = ( R T ) p
What are the steps to rotate about an arbitrary point
How do I perform compound transformations using row vectors?
How many points are needed to align images with an affine transform?
How many points are needed to align images with a homography transform?
How do we warp images given a known linear transform?
Describe Bilinear interpolation
Describe Nearest-neighbour
interpolation
Take a point from an image
[x, y] = [132.45, 80.26]
Round the x-coordinate
[132.45, 80.26] à [132, 80.26]
Round the y-coordinate
[132, 80.26] à [132, 80]
Considers only the nearest pixel
What equations are used for bi-linear interpolation?