Homography Estimation - UCSD CSE [PDF]

This means that x2 is equal to Hx1 up to a scale (due to universal scale ambiguity). Note that x2 ∼ Hx1 is a direct ma

11 downloads 5 Views 67KB Size

Recommend Stories


Psychological Science - UCSD Psychology [PDF]
Jun 4, 2010 - On behalf of: Association for Psychological Science can be found at: ..... the probabilities are as follows: P(species a|yellow eye) = 1, P(species b|black eye) = 8/13, P(species a|light-green claw) = 7/8, and P(species b|dark-green cla

B.Tech. (CSE) - GLA University [PDF]
May 12, 2014 - L. T. P. 1. BCA311. Core Java. 4. 0. 0. 4. 4. 2. BCA312. Web Technology. 4. 0. 0. 4. 4. 3. BCA313. Design and Analysis of Algorithms. 3. 1. 0. 4. 4. 4. AHM311 Operations Research. 3. 1. 0. 4. 4. 5. Elective I. 4. 0. 0. 4. 4. PRACTICALS

CSE 2331
Stop acting so small. You are the universe in ecstatic motion. Rumi

UCSD EBI Proposal
Goodbyes are only for those who love with their eyes. Because for those who love with heart and soul

Syllabus - UCSD Global Seminar
Knock, And He'll open the door. Vanish, And He'll make you shine like the sun. Fall, And He'll raise

DSmithChaosExperiment - UCSD Physics
Just as there is no loss of basic energy in the universe, so no thought or action is without its effects,

CSE 6331
You miss 100% of the shots you don’t take. Wayne Gretzky

CSE 1211
We must be willing to let go of the life we have planned, so as to have the life that is waiting for

CSE 3430
The wound is the place where the Light enters you. Rumi

CSE 2112
Forget safety. Live where you fear to live. Destroy your reputation. Be notorious. Rumi

Idea Transcript


Computer Vision I CSE 252A, Winter 2007 David Kriegman

Homography Estimation∗

1. From 3D to 2D Coordinates Under homography, we can write the transformation of points in 3D from camera 1 to camera 2 as: X1 , X2 ∈ R 3

X2 = HX1

(1)

In the image planes, using homogeneous coordinates, we have λ1 x 1 = X 1 ,

λ2 x2 = X 2 ,

therefore λ2 x2 = Hλ1 x1

(2)

This means that x2 is equal to Hx1 up to a scale (due to universal scale ambiguity). Note that x2 ∼ Hx1 is a direct mapping between points in the image planes. If it is known that some points all lie in a plane in an image 1 , the image can be rectified directly without needing to recover and manipulate 3D coordinates.

2. Homography Estimation To estimate H, we start from the equation x2 ∼ Hx1 . Written element by element, in homogenous coordinates we get the following constraint:   x2 H11  y2  =  H21 z2 H31 

H12 H22 H32

  H13 x1 H23   y1  ⇔ x2 = Hx1 z1 H33

(3)

In inhomogenous coordinates (x02 = x2 /z2 and y20 = y2 /z2 ), H11 x1 + H12 y1 + H13 z1 H31 x1 + H32 y1 + H33 z1 H21 x1 + H22 y1 + H23 z1 y20 = H31 x1 + H32 y1 + H33 z1

x02 =

(4) (5)

Without loss of generality, set z1 = 1 and rearrange: x02 (H31 x1 + H32 y1 + H33 ) = H11 x1 + H12 y1 + H13

(6)

y20 (H31 x1 + H32 y1 + H33 ) = H21 x1 + H22 y1 + H23

(7)

We want to solve for H. Even though these inhomogeneous equations involve the coordinates nonlinearly, the coefficients of H appear linearly. Rearranging equations 6 and 7 we get, aTx h = 0 aTy h = 0 ∗ Adapted 1 For

from lecture notes from CSE252b Spring 2004 with permission from Serge Belongie. cameras related by a pure rotation, every scene point can be thought of as lying on a plane at infinity.

1

(8) (9)

where h = (H11 , H12 , H13 , H21 , H22 , H23 , H31 , H32 , H33 ) ax

=

ay

=

T

T (−x1 , −y1 , −1, 0, 0, 0, x02x1 , x02 y1 , x02 ) T (0, 0, 0, −x1, −y1 , −1, y20 x1 , y20 y1 , y20 ) .

(10) (11) (12)

Given a set of corresponding points, we can form the following linear system of equations, (13)

Ah = 0 where 

aTx1 aTy1 .. .

   A=   aTxN aTyN



   .  

(14)

Equation 13 can be solved using homogeneous linear least squares, described in the next section.

3. Homogeneous Linear Least Squares We will frequently encounter problems of the form (15)

Ax = 0

known as the Homogeneous Linear Least Squares problem. It is similar in appearance to the inhomogeneous linear least squares problem (16)

Ax = b

in which case we solve for x using the pseudoinverse or inverse of A. This won’t work with Equation 15. Instead we solve it using Singular Value Decomposition (SVD). Starting with equation 13 from the previous section, we first compute the SVD of A: A = U ΣV > =

9 X

σi ui vi>

(17)

i=1

When performed in Matlab, the singular values σi will be sorted in descending order, so σ9 will be the smallest. There are three cases for the value of σ9 : • If the homography is exactly determined, then σ9 = 0, and there exists a homography that fits the points exactly. • If the homography is overdetermined, then σ9 ≥ 0. Here σ9 represents a “residual” or goodness of fit. • We will not handle the case of the homography being underdetermined. From the SVD we take the “right singular vector” (a column from V ) which corresponds to the smallest singular value, σ9 . This is the solution, h, which contains the coefficients of the homography matrix that best fits the points. We reshape h into the matrix H, and form the equation x2 ∼ Hx1 .

4. Homogeneous Linear Least Squares Alternate Derivation Starting again with the equation Ah = 0, the sum squared error can be written as, f (h)

=

f (h)

=

f (h)

=

1 T (Ah − 0) (Ah − 0) 2 1 T (Ah) (Ah) 2 1 T T h A Ah. 2 2

(18) (19) (20)

Taking the derivative of f with respect to h and setting the result to zero, we get  d 1 T A A + (AT A)T h f =0 = dh 2 0 = AT Ah.

(21) (22)

Looking at the eigen-decomposition of AT A, we see that h should equal the eigenvector of AT A that has an eigenvalue of zero (or, in the presence of noise the eigenvalue closest to zero). This result is identical to the result obtained using SVD, which is easily seen from the following fact, Fact 1 Given a matrix A with SVD decomposition A = U ΣV T , the columns of V correspond to the eigenvectors of AT A.

3

Smile Life

When life gives you a hundred reasons to cry, show life that you have a thousand reasons to smile

Get in touch

© Copyright 2015 - 2024 PDFFOX.COM - All rights reserved.