Machine Learning for Signal Processing Fundamentals of Linear - - PowerPoint PPT Presentation

machine learning for signal processing
SMART_READER_LITE
LIVE PREVIEW

Machine Learning for Signal Processing Fundamentals of Linear - - PowerPoint PPT Presentation

Machine Learning for Signal Processing Fundamentals of Linear Algebra Class 2. 3 Sep 2013 Instructor: Bhiksha Raj 3 Sep 2013 11-755/18-797 1 Administrivia Change of classroom: BH A51 Being broadcast to west coast Registration:


slide-1
SLIDE 1

Machine Learning for Signal Processing

Fundamentals of Linear Algebra

Class 2. 3 Sep 2013 Instructor: Bhiksha Raj

3 Sep 2013 11-755/18-797 1

slide-2
SLIDE 2

Administrivia

  • Change of classroom: BH A51

– Being broadcast to west coast

  • Registration: Anyone on waitlist still?
  • Homework 1: Will appear over weekend.

– Linear algebra

  • Both TAs have office hours from 9.30am-11.30am on

Fridays

– Location TBD, still waiting for info from ECE

3 Sep 2013 11-755/18-797 2

slide-3
SLIDE 3

Overview

  • Vectors and matrices
  • Basic vector/matrix operations
  • Vector products
  • Matrix products
  • Various matrix types
  • Projections

3 Sep 2013 11-755/18-797 3

slide-4
SLIDE 4

Book

  • Fundamentals of Linear Algebra, Gilbert Strang
  • Important to be very comfortable with linear algebra

– Appears repeatedly in the form of Eigen analysis, SVD, Factor analysis – Appears through various properties of matrices that are used in machine learning, particularly when applied to images and sound

  • Today’s lecture: Definitions

– Very small subset of all that’s used – Important subset, intended to help you recollect

3 Sep 2013 11-755/18-797 4

slide-5
SLIDE 5

Incentive to use linear algebra

  • Pretty notation!
  • Easier intuition

– Really convenient geometric interpretations – Operations easy to describe verbally

  • Easy code translation!

3 Sep 2013 11-755/18-797 5

for i=1:n for j=1:m c(i)=c(i)+y(j)*x(i)*a(i,j) end end C=x*A*y

฀ y j xiaij

i

j

y A x  

T

slide-6
SLIDE 6

And other things you can do

  • Manipulate Images
  • Manipulate Sounds

3 Sep 2013 11-755/18-797 6

Rotation + Projection + Scaling + Perspective

Time  Frequency 

From Bach’s Fugue in Gm Decomposition (NMF)

slide-7
SLIDE 7

Scalars, vectors, matrices, …

  • A scalar a is a number

– a = 2, a = 3.14, a = -1000, etc.

  • A vector a is a linear arrangement of a collection of scalars
  • A matrix A is a rectangular arrangement of a collection of

scalars

  • MATLAB syntax: a=[1 2 3], A=[1 2;3 4]

3 Sep 2013 11-755/18-797 7

฀ A  3.12 10 10.0 2       ฀ a  1 2 3

 

, a  3.14 32      

slide-8
SLIDE 8

Vectors

  • Vectors usually hold sets of numerical

attributes

– X, Y, Z coordinates

  • [1, 2, 0]

– Earnings, losses, suicides

  • [$0 $1,000,000 3]

– A location in Manhattan

  • [3av 33st]
  • Vectors are either column or row vectors

– A sound can be a vector, a series of daily temperatures can be a vector, etc …

3 Sep 2013 11-755/18-797 8 [-2.5av 6st] [2av 4st] [1av 8st]

฀ c  a b c           , r  a b c

 

, s 

slide-9
SLIDE 9

Vectors in the abstract

  • Ordered collection of numbers

– Examples: [3 4 5], [a b c d], .. – [3 4 5] != [4 3 5]  Order is important

  • Typically viewed as identifying (the path from origin to) a location in an

N-dimensional space

3 Sep 2013 11-755/18-797 9

x z y 3 4 5 (3,4,5) (4,3,5)

slide-10
SLIDE 10

Matrices

  • Matrices can be square or rectangular

– Images can be a matrix, collections of sounds can be a matrix, etc. – A matrix can be vertical stacking of row vectors – Or a horizontal arrangement of column vectors

3 Sep 2013 11-755/18-797 10

฀ S  a b c d       , R  a b c d e f       , M                     f e d c b a R        f e d c b a R

slide-11
SLIDE 11

Dimensions of a matrix

  • The matrix size is specified by the number of rows and

columns

– c = 3x1 matrix: 3 rows and 1 column – r = 1x3 matrix: 1 row and 3 columns – S = 2 x 2 matrix – R = 2 x 3 matrix – Pacman = 321 x 399 matrix

3 Sep 2013 11-755/18-797 11

 

c b a c b a             r c ,

              f e d c b a d c b a R S ,

slide-12
SLIDE 12

Representing an image as a matrix

  • 3 pacmen
  • A 321 x 399 matrix

– Row and Column = position

  • A 3 x 128079 matrix

– Triples of x,y and value

  • A 1 x 128079 vector

– “Unraveling” the matrix

  • Note: All of these can be recast as the

matrix that forms the image

– Representations 2 and 4 are equivalent

  • The position is not represented

3 Sep 2013 11-755/18-797 12

          1 . 1 . . 1 . 1 1 10 . 10 . 6 5 . 1 . 2 1 10 . 2 . 2 2 . 2 . 1 1

 

1 . . . 1 1 . 1 1

Y X v Values only; X and Y are implicit

slide-13
SLIDE 13

Vectors vs. Matrices

  • A vector is a geometric notation for how to get from (0,0)

to some location in the space

  • A matrix is simply a collection of vectors!

– Properties of matrices are average properties of the traveller’s path to the vector destinations

3 Sep 2013 11-755/18-797 13

3 4 5 (3,4,5)

slide-14
SLIDE 14

Basic arithmetic operations

  • Addition and subtraction

– Element-wise operations

  • MATLAB syntax: a+b and a-b

3 Sep 2013 11-755/18-797 14

฀ a  b  a

1

a2 a3            b

1

b2 b3            a

1  b 1

a2  b2 a3  b3           ฀ a  b  a

1

a2 a3            b

1

b2 b3            a

1  b 1

a2  b2 a3  b3           ฀ A  B  a

11

a

12

a21 a22       b

11

b

12

b21 b22       a

11  b 11

a

12  b 12

a21  b21 a22  b22      

slide-15
SLIDE 15

Vector Operations

  • Operations tell us how to get from origin to the

result of the vector operations

– (3,4,5) + (3,-2,-3) = (6,2,2)

3 Sep 2013 11-755/18-797 15

3 4 5 (3,4,5) 3

  • 2
  • 3

(3,-2,-3) (6,2,2)

slide-16
SLIDE 16

Operations example

  • Adding random values to different

representations of the image

3 Sep 2013 11-755/18-797 16

 

1 . . . 1 1 . 1 1           1 . 1 . . 1 . 1 1 10 . 10 . 6 5 . 1 . 2 1 10 . 2 . 2 2 . 2 . 1 1           1 . 1 . . 1 . 1 1 10 . 10 . 6 5 . 1 . 2 1 10 . 2 . 2 2 . 2 . 1 1

+ + Random(3,columns(M))

slide-17
SLIDE 17

Vector norm

  • Measure of how big a vector is:

– Represented as

  • Geometrically the shortest

distance to travel from the origin to the destination

– As the crow flies – Assuming Euclidean Geometry

  • MATLAB syntax:

norm(x)

3 Sep 2013 11-755/18-797 17 [-2av 17st] [-6av 10st]

฀ a b ...

  

a2  b2  ...2

฀ x

3 4 5 (3,4,5) Length = sqrt(32 + 42 + 52)

slide-18
SLIDE 18

Transposition

  • A transposed row vector becomes a column (and vice versa)
  • A transposed matrix gets all its row (or column) vectors

transposed in order

  • MATLAB syntax: a’

3 Sep 2013 11-755/18-797 18

฀ x  a b c           , xT  a b c

 

฀ X  a b c d e f       , XT  a d b e c f          

฀ y  a b c

 

, yT  a b c          

฀ M            , MT           

slide-19
SLIDE 19

Vector multiplication

  • Multiplication is not element-wise!
  • Dot product, or inner product

– Vectors must have the same number of elements – Row vector times column vector = scalar

  • Outer product or vector direct product

– Column vector times row vector = matrix

  • MATLAB syntax: a*b

3 Sep 2013 11-755/18-797 19

฀ a b c            d e f

 

a d ae a f b d be b f c  d c e c  f          

฀ a b c

 

d e f            a d  be  c  f

slide-20
SLIDE 20

Vector dot product in Manhattan

  • Example:

– Coordinates are yards, not ave/st

– a = [200 1600], b = [770 300]

  • The dot product of the two vectors

relates to the length of a projection

– How much of the first vector have we covered by following the second one? – Must normalize by the length of the “target” vector

3 Sep 2013 11-755/18-797 20 [200yd 1600yd] norm ≈ 1612 [770yd 300yd] norm ≈ 826

฀ a bT a  200 1600

  770

300       200 1600

 

 393yd

norm ≈ 393yd

slide-21
SLIDE 21

Vector dot product

  • Vectors are spectra

– Energy at a discrete set of frequencies – Actually 1 x 4096 – X axis is the index of the number in the vector

  • Represents frequency

– Y axis is the value of the number in the vector

  • Represents magnitude

3 Sep 2013 11-755/18-797 21

frequency Sqrt(energy) frequency frequency

 

1 . . . 1 54 . 9 11

 

1 . 14 . 16 . . 24 . 3

 

. 13 . 3 . .

C E C2

slide-22
SLIDE 22

Vector dot product

  • How much of C is also in E

– How much can you fake a C by playing an E – C.E / |C||E| = 0.1 – Not very much

  • How much of C is in C2?

– C.C2 / |C| /|C2| = 0.5 – Not bad, you can fake it

  • To do this, C, E, and C2 must be the same size

3 Sep 2013 11-755/18-797 22

frequency Sqrt(energy) frequency frequency

 

1 . . . 1 54 . 9 11

 

1 . 14 . 16 . . 24 . 3

 

. 13 . 3 . .

C E C2

slide-23
SLIDE 23

Vector outer product

  • The column vector is the spectrum
  • The row vector is an amplitude modulation
  • The outer product is a spectrogram

– Shows how the energy in each frequency varies with time – The pattern in each column is a scaled version of the spectrum – Each row is a scaled version of the modulation

3 Sep 2013 11-755/18-797 23

slide-24
SLIDE 24

Multiplying a vector by a matrix

  • Generalization of vector multiplication

– Left multiplication: Dot product of each vector pair – Dimensions must match!!

  • No. of columns of matrix = size of vector
  • Result inherits the number of rows from the matrix
  • MATLAB syntax: a*b

3 Sep 2013 11-755/18-797 24

                                b a b a b a a B A

2 1 2 1

slide-25
SLIDE 25

Multiplying a vector by a matrix

  • Generalization of vector multiplication

– Right multiplication: Dot product of each vector pair – Dimensions must match!!

  • No. of rows of matrix = size of vector
  • Result inherits the number of columns from the matrix
  • MATLAB syntax: a*b

3 Sep 2013 11-755/18-797 25

   

2 1 2 1

. . b a b a b b a B A                  

slide-26
SLIDE 26

Multiplication of vector space by matrix

  • The matrix rotates and scales the space

– Including its own vectors

3 Sep 2013 11-755/18-797 26

        6 . 1 3 . 1 7 . 3 . Y

slide-27
SLIDE 27

Multiplication of vector space by matrix

  • The normals to the row vectors in the matrix become the

new axes

– X axis = normal to the second row vector

  • Scaled by the inverse of the length of the first row vector

3 Sep 2013 11-755/18-797 27

        6 . 1 3 . 1 7 . 3 . Y

slide-28
SLIDE 28

Matrix Multiplication

  • The k-th axis corresponds to the normal to the hyperplane represented

by the 1..k-1,k+1..N-th row vectors in the matrix

– Any set of K-1 vectors represent a hyperplane of dimension K-1 or less

  • The distance along the new axis equals the length of the projection on

the k-th row vector

– Expressed in inverse-lengths of the vector

3 Sep 2013 11-755/18-797 28

slide-29
SLIDE 29

Matrix Multiplication: Column space

  • So much for spaces .. what does multiplying a

matrix by a vector really do?

  • It mixes the column vectors of the matrix

using the numbers in the vector

  • The column space of the Matrix is the

complete set of all vectors that can be formed by mixing its columns

3 Sep 2013 11-755/18-797 29

                                     f c z e b y d a x z y x f e d c b a

slide-30
SLIDE 30

Matrix Multiplication: Row space

  • Left multiplication mixes the row vectors of

the matrix.

  • The row space of the Matrix is the complete

set of all vectors that can be formed by mixing its rows

3 Sep 2013 11-755/18-797 30

     

f e d y c b a x f e d c b a y x        

slide-31
SLIDE 31

Matrix multiplication: Mixing vectors

  • A physical example

– The three column vectors of the matrix X are the spectra of three notes – The multiplying column vector Y is just a mixing vector – The result is a sound that is the mixture of the three notes

3 Sep 2013 11-755/18-797 31

            1 . . . 24 9 . . 3 1

X

          1 2 1

Y

            2 . . 7

=

slide-32
SLIDE 32

Matrix multiplication: Mixing vectors

  • Mixing two images

– The images are arranged as columns

  • position value not included

– The result of the multiplication is rearranged as an image

3 Sep 2013 11-755/18-797 32

200 x 200 200 x 200 200 x 200 40000 x 2

      75 . 25 .

40000 x 1 2 x 1

slide-33
SLIDE 33

Multiplying matrices

  • Generalization of vector multiplication

– Outer product of dot products!! – Dimensions must match!!

  • Columns of first matrix = rows of second
  • Result inherits the number of rows from the first matrix and

the number of columns from the second matrix

  • MATLAB syntax: a*b

3 Sep 2013 11-755/18-797 33

฀ A B   a1   a2           b1 b2              a1 b1 a1 b2 a2 b1 a2 b2      

slide-34
SLIDE 34

Matrix multiplication: another view

3 Sep 2013 11-755/18-797 34

     

NK N MN N K M K M NK N NK MN M N N

b b a a b b a a b b a a b b b b a a a a a a . . . ... . . . . . . . . . . . . . . . . . . . . .

1 1 2 21 2 12 1 11 1 11 1 11 1 2 21 1 11

                                                              

 The outer product of the first column of A and the first row of

B + outer product of the second column of A and the second row of B + ….

 Sum of outer products

slide-35
SLIDE 35

Why is that useful?

  • Sounds: Three notes modulated

independently

3 Sep 2013 11-755/18-797 35

            1 . . . 24 9 . . 3 1

X

          . . . . . 1 95 . 9 . 8 . 7 . 6 . 5 . . . . . . . 5 . 5 . 7 . 9 . 1 . . . . . 5 . 75 . 1 75 . 5 .

Y

slide-36
SLIDE 36

Matrix multiplication: Mixing modulated spectra

  • Sounds: Three notes modulated

independently

3 Sep 2013 11-755/18-797 36

            1 . . . 24 9 . . 3 1

X

          . . . . . 1 95 . 9 . 8 . 7 . 6 . 5 . . . . . . . 5 . 5 . 7 . 9 . 1 . . . . . 5 . 75 . 1 75 . 5 .

Y

slide-37
SLIDE 37

Matrix multiplication: Mixing modulated spectra

  • Sounds: Three notes modulated

independently

3 Sep 2013 11-755/18-797 37

            1 . . . 24 9 . . 3 1

X

          . . . . . 1 95 . 9 . 8 . 7 . 6 . 5 . . . . . . . 5 . 5 . 7 . 9 . 1 . . . . . 5 . 75 . 1 75 . 5 .

Y

slide-38
SLIDE 38

Matrix multiplication: Mixing modulated spectra

  • Sounds: Three notes modulated

independently

3 Sep 2013 11-755/18-797 38

          . . . . . 1 95 . 9 . 8 . 7 . 6 . 5 . . . . . . . 5 . 5 . 7 . 9 . 1 . . . . . 5 . 75 . 1 75 . 5 .

            1 . . . 24 9 . . 3 1

X

slide-39
SLIDE 39

Matrix multiplication: Mixing modulated spectra

  • Sounds: Three notes modulated

independently

3 Sep 2013 11-755/18-797 39

          . . . . . 1 95 . 9 . 8 . 7 . 6 . 5 . . . . . . . 5 . 5 . 7 . 9 . 1 . . . . . 5 . 75 . 1 75 . 5 .

            1 . . . 24 9 . . 3 1

X

slide-40
SLIDE 40

Matrix multiplication: Mixing modulated spectra

  • Sounds: Three notes modulated

independently

3 Sep 2013 11-755/18-797 40

slide-41
SLIDE 41

Matrix multiplication: Image transition

  • Image1 fades out linearly
  • Image 2 fades in linearly

3 Sep 2013 11-755/18-797 41

                . . . . . .

2 2 1 1

j i j i

      1 9 . 8 . 7 . 6 . 5 . 4 . 3 . 2 . 1 . 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 1

slide-42
SLIDE 42

Matrix multiplication: Image transition

  • Each column is one image

– The columns represent a sequence of images of decreasing intensity

  • Image1 fades out linearly

3 Sep 2013 11-755/18-797 42

      1 9 . 8 . 7 . 6 . 5 . 4 . 3 . 2 . 1 . 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 1

                . . . . . .

2 2 1 1

j i j i

                . . . . . . 8 . 9 . . . . . . . . . . . . . . . . . . . . . . . . . . 8 . 9 . . . . . . . 8 . 9 .

2 2 2 1 1 1 N N N

i i i i i i i i i

slide-43
SLIDE 43

Matrix multiplication: Image transition

  • Image 2 fades in linearly

3 Sep 2013 11-755/18-797 43

      1 9 . 8 . 7 . 6 . 5 . 4 . 3 . 2 . 1 . 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 1

                . . . . . .

2 2 1 1

j i j i

slide-44
SLIDE 44

Matrix multiplication: Image transition

  • Image1 fades out linearly
  • Image 2 fades in linearly

3 Sep 2013 11-755/18-797 44

                . . . . . .

2 2 1 1

j i j i

      1 9 . 8 . 7 . 6 . 5 . 4 . 3 . 2 . 1 . 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 1

slide-45
SLIDE 45

The Identity Matrix

  • An identity matrix is a square matrix where

– All diagonal elements are 1.0 – All off-diagonal elements are 0.0

  • Multiplication by an identity matrix does not change vectors

3 Sep 2013 11-755/18-797 45

       1 1 Y

slide-46
SLIDE 46

Diagonal Matrix

  • All off-diagonal elements are zero
  • Diagonal elements are non-zero
  • Scales the axes

– May flip axes

3 Sep 2013 11-755/18-797 46

       1 2 Y

slide-47
SLIDE 47

Diagonal matrix to transform images

  • How?

3 Sep 2013 11-755/18-797 47

slide-48
SLIDE 48

Stretching

                    1 . 1 . . 1 . 1 1 10 . 10 . 6 5 . 1 . 2 1 10 . 2 . 2 2 . 2 . 1 1 1 1 2

  • Location-based

representation

  • Scaling matrix – only scales

the X axis

– The Y axis and pixel value are scaled by identity

  • Not a good way of scaling.

3 Sep 2013 11-755/18-797 48

slide-49
SLIDE 49

Stretching

) 2 x ( Newpic . . . . . . . 5 . . 5 . 1 5 . . 5 . 1 N N EA A                  

  • Better way
  • Interpolate

3 Sep 2013 11-755/18-797 49

D =

slide-50
SLIDE 50

Modifying color

  • Scale only Green

                            1 2 1 P Newpic B G R P

3 Sep 2013 11-755/18-797 50

slide-51
SLIDE 51

Permutation Matrix

  • A permutation matrix simply rearranges the axes

– The row entries are axis vectors in a different order – The result is a combination of rotations and reflections

  • The permutation matrix effectively permutes the

arrangement of the elements in a vector

3 Sep 2013 11-755/18-797 51

                               x z y z y x 1 1 1

3 4 5 (3,4,5) X Y Z 4 5 3 X (old Y) Y (old Z) Z (old X)

slide-52
SLIDE 52

Permutation Matrix

  • Reflections and 90 degree rotations of images

and objects

3 Sep 2013 11-755/18-797 52

           1 1 1 P            1 1 1 P

          1 . 1 . . 1 . 1 1 10 . 10 . 6 5 . 1 . 2 1 10 . 2 . 2 2 . 2 . 1 1

slide-53
SLIDE 53

Permutation Matrix

  • Reflections and 90 degree rotations of images and objects

– Object represented as a matrix of 3-Dimensional “position” vectors – Positions identify each point on the surface

3 Sep 2013 11-755/18-797 53

           1 1 1 P            1 1 1 P

         

N N N

z z z y y y x x x . . . . . .

2 1 2 1 2 1

slide-54
SLIDE 54

Rotation Matrix

  • A rotation matrix rotates the vector by some angle q
  • Alternately viewed, it rotates the axes

– The new axes are at an angle q to the old one

3 Sep 2013 11-755/18-797 54

                      ' ' cos sin sin cos y x X y x X

new

q q q q

q

R

X Y (x,y)

new

X X R 

q

X Y (x,y) (x’,y’)

q q q q cos sin ' sin cos ' y x y y x x    

x’ x y’ y q

slide-55
SLIDE 55

Rotating a picture

  • Note the representation: 3-row matrix

– Rotation only applies on the “coordinate” rows – The value does not change – Why is pacman grainy?

3 Sep 2013 11-755/18-797 55

          1 . 1 . . 1 . 1 1 . . 10 . 6 5 . 1 . 2 1 . . 2 . 2 2 . 2 . 1 1             1 45 cos 45 sin 45 sin 45 cos R               1 . 1 . . 1 . 1 1 . . 2 12 . 2 8 2 7 . 2 3 . 2 3 2 . . 2 8 . 2 4 2 3 . 2 . 2

slide-56
SLIDE 56

3-D Rotation

  • 2 degrees of freedom

– 2 separate angles

  • What will the rotation matrix be?

3 Sep 2013 11-755/18-797 56

X Y Z q Xnew Ynew Znew a

slide-57
SLIDE 57

Matrix Operations: Properties

  • A+B = B+A
  • AB != BA

3 Sep 2013 11-755/18-797 57

slide-58
SLIDE 58

Projections

  • What would we see if the cone to the left were transparent if we

looked at it from above the plane shown by the grid?

– Normal to the plane – Answer: the figure to the right

  • How do we get this? Projection

3 Sep 2013 11-755/18-797 58

slide-59
SLIDE 59

Projection Matrix

  • Consider any plane specified by a set of vectors W1, W2..

– Or matrix [W1 W2 ..] – Any vector can be projected onto this plane – The matrix A that rotates and scales the vector so that it becomes its projection is a projection matrix

3 Sep 2013 11-755/18-797 59

90degrees projection W1 W2

slide-60
SLIDE 60

Projection Matrix

  • Given a set of vectors W1, W2, which form a matrix W = [W1 W2.. ]
  • The projection matrix to transform a vector X to its projection on the plane is

– P = W (WTW)-1 WT

  • We will visit matrix inversion shortly
  • Magic – any set of vectors from the same plane that are expressed as a matrix

will give you the same projection matrix

– P = V (VTV)-1 VT

3 Sep 2013 11-755/18-797 60

90degrees projection W1 W2

slide-61
SLIDE 61

Projections

  • HOW?

3 Sep 2013 11-755/18-797 61

slide-62
SLIDE 62

Projections

  • Draw any two vectors W1 and W2 that lie on the plane

– ANY two so long as they have different angles

  • Compose a matrix W = [W1 W2]
  • Compose the projection matrix P = W (WTW)-1 WT
  • Multiply every point on the cone by P to get its projection
  • View it 

– I’m missing a step here – what is it?

3 Sep 2013 11-755/18-797 62

slide-63
SLIDE 63

Projections

  • The projection actually projects it onto the plane, but you’re still seeing

the plane in 3D

– The result of the projection is a 3-D vector – P = W (WTW)-1 WT = 3x3, P*Vector = 3x1 – The image must be rotated till the plane is in the plane of the paper

  • The Z axis in this case will always be zero and can be ignored
  • How will you rotate it? (remember you know W1 and W2)

3 Sep 2013 11-755/18-797 63

slide-64
SLIDE 64

Projection matrix properties

  • The projection of any vector that is already on the plane is the vector itself

– Px = x if x is on the plane – If the object is already on the plane, there is no further projection to be performed

  • The projection of a projection is the projection

– P (Px) = Px – That is because Px is already on the plane

  • Projection matrices are idempotent

– P2 = P

  • Follows from the above

64 3 Sep 2013 11-755/18-797

slide-65
SLIDE 65

Projections: A more physical meaning

  • Let W1, W2 .. Wk be “bases”
  • We want to explain our data in terms of these “bases”

– We often cannot do so – But we can explain a significant portion of it

  • The portion of the data that can be expressed in terms of
  • ur vectors W1, W2, .. Wk, is the projection of the data
  • n the W1 .. Wk (hyper) plane

– In our previous example, the “data” were all the points on a cone, and the bases were vectors on the plane

3 Sep 2013 11-755/18-797 65

slide-66
SLIDE 66

Projection : an example with sounds

  • The spectrogram (matrix) of a piece of music

3 Sep 2013 11-755/18-797 66

 How much of the above music was composed of the

above notes

 I.e. how much can it be explained by the notes

slide-67
SLIDE 67

Projection: one note

  • The spectrogram (matrix) of a piece of music

3 Sep 2013 11-755/18-797 67

 M = spectrogram; W = note  P = W (WTW)-1 WT  Projected Spectrogram = P * M

M = W =

slide-68
SLIDE 68

Projection: one note – cleaned up

  • The spectrogram (matrix) of a piece of music

3 Sep 2013 11-755/18-797 68

 Floored all matrix values below a threshold to zero

M = W =

slide-69
SLIDE 69

Projection: multiple notes

  • The spectrogram (matrix) of a piece of music

3 Sep 2013 11-755/18-797 69

 P = W (WTW)-1 WT  Projected Spectrogram = P * M

M = W =

slide-70
SLIDE 70

Projection: multiple notes, cleaned up

  • The spectrogram (matrix) of a piece of music

3 Sep 2013 11-755/18-797 70

 P = W (WTW)-1 WT  Projected Spectrogram = P * M

M = W =

slide-71
SLIDE 71

Projection and Least Squares

  • Projection actually computes a least squared error estimate
  • For each vector V in the music spectrogram matrix

– Approximation: Vapprox = a*note1 + b*note2 + c*note3.. – Error vector E = V – Vapprox – Squared error energy for V e(V) = norm(E)2 – Total error = sum over all V { e(V) } = SV e(V)

  • Projection computes Vapprox for all vectors such that Total error is minimized

– It does not give you “a”, “b”, “c”.. Though

  • That needs a different operation – the inverse / pseudo inverse

3 Sep 2013 11-755/18-797 71

                     c b a Vapprox

note1 note2 note3

slide-72
SLIDE 72

Perspective

  • The picture is the equivalent of “painting” the viewed scenery on a

glass window

  • Feature: The lines connecting any point in the scenery and its

projection on the window merge at a common point

– The eye – As a result, parallel lines in the scene apparently merge to a point

3 Sep 2013 11-755/18-797 72

slide-73
SLIDE 73

An aside on Perspective..

  • Perspective is the result of convergence of the image to a point
  • Convergence can be to multiple points

– Top Left: One-point perspective – Top Right: Two-point perspective – Right: Three-point perspective

3 Sep 2013 11-755/18-797 73

slide-74
SLIDE 74

Representing Perspective

  • Perspective was not always understood.
  • Carefully represented perspective can create

illusions..

3 Sep 2013 11-755/18-797 74

slide-75
SLIDE 75

Central Projection

  • The positions on the “window” are scaled along the line
  • To compute (x,y) position on the window, we need z (distance of

window from eye), and (x’,y’,z’) (location being projected)

3 Sep 2013 11-755/18-797 75

' z z ' y y ' x x  

Property of a line through origin

' y y ' x x ' z z a a a   

X Y x,y z x’,y’,z’

slide-76
SLIDE 76

Homogeneous Coordinates

  • Represent points by a triplet

– Using yellow window as reference: – (x,y) = (x,y,1) – (x’,y’) = (x,y,c’) c’ = a’/a – Locations on line generally represented as (x,y,c)

  • x’= x/c’ , y’= y/c’

3 Sep 2013 11-755/18-797 76

X Y x,y x’,y’

' x ' x a a  ' y ' y a a  ' x x '  a a ' x x '  a a ' y y '  a a

slide-77
SLIDE 77

Homogeneous Coordinates in 3-D

  • Points are represented using FOUR coordinates

– (X,Y,Z,c) – “c” is the “scaling” factor that represents the distance of the actual scene

  • Actual Cartesian coordinates:

– Xactual = X/c, Yactual = Y/c, Zactual = Z/c

3 Sep 2013 11-755/18-797 77

x1’,y1’,z1’ x2’,y2’,z2’ x2,y2,z2 x1,y1,z1

' x ' x

1 1

a a  ' y ' y

1 1

a a  ' z ' z

1 1

a a  ' x ' x

2 2

a a  ' y ' y

2 2

a a  ' z ' z

2 2

a a 

slide-78
SLIDE 78

Homogeneous Coordinates

  • In both cases, constant “c” represents distance along the line

with respect to a reference window

– In 2D the plane in which all points have values (x,y,1)

  • Changing the reference plane changes the representation
  • I.e. there may be multiple Homogenous representations

(x,y,c) that represent the same cartesian point (x’ y’)

3 Sep 2013 11-755/18-797 78