Samiksha Jaiswal (Editor)

Essential matrix

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computer vision, the essential matrix is a 3 × 3 matrix, E , with some additional properties described below, which relates corresponding points in stereo images assuming that the cameras satisfy the pinhole camera model.

Contents

Function

More specifically, if y and y are homogeneous normalized image coordinates in image 1 and 2, respectively, then

( y ) E y = 0

if y and y correspond to the same 3D point in the scene.

The above relation which defines the essential matrix was published in 1981 by Longuet-Higgins, introducing the concept to the computer vision community. Hartley & Zisserman's book reports that an analogous matrix appeared in photogrammetry long before that. Longuet-Higgins' paper includes an algorithm for estimating E from a set of corresponding normalized image coordinates as well as an algorithm for determining the relative position and orientation of the two cameras given that E is known. Finally, it shows how the 3D coordinates of the image points can be determined with the aid of the essential matrix.

Use

The essential matrix can be seen as a precursor to the fundamental matrix. Both matrices can be used for establishing constraints between matching image points, but the essential matrix can only be used in relation to calibrated cameras since the inner camera parameters must be known in order to achieve the normalization. If, however, the cameras are calibrated the essential matrix can be useful for determining both the relative position and orientation between the cameras and the 3D position of corresponding image points.

Derivation and definition

This derivation follows the paper by Longuet-Higgins.

Two normalized cameras project the 3D world onto their respective image planes. Let the 3D coordinates of a point P be ( x 1 , x 2 , x 3 ) and ( x 1 , x 2 , x 3 ) relative to each camera's coordinate system. Since the cameras are normalized, the corresponding image coordinates are

( y 1 y 2 ) = 1 x 3 ( x 1 x 2 )   and   ( y 1 y 2 ) = 1 x 3 ( x 1 x 2 )

A homogeneous representation of the two image coordinates is then given by

( y 1 y 2 1 ) = 1 x 3 ( x 1 x 2 x 3 )   and   ( y 1 y 2 1 ) = 1 x 3 ( x 1 x 2 x 3 )

which also can be written more compactly as

y = 1 x 3 x ~   and   y = 1 x 3 x ~

where y and y are homogeneous representations of the 2D image coordinates and x ~ and x ~ are proper 3D coordinates but in two different coordinate systems.

Another consequence of the normalized cameras is that their respective coordinate systems are related by means of a translation and rotation. This implies that the two sets of 3D coordinates are related as

x ~ = R ( x ~ t )

where R is a 3 × 3 rotation matrix and t is a 3-dimensional translation vector.

Define the essential matrix as

where [ t ] × is the matrix representation of the cross product with t .

To see that this definition of the essential matrix describes a constraint on corresponding image coordinates multiply E from left and right with the 3D coordinates of point P in the two different coordinate systems:

( x ~ ) T E x ~ = ( 1 ) ( x ~ t ) T R T R [ t ] × x ~ = ( 2 ) ( x ~ t ) T [ t ] × x ~ = ( 3 ) 0
  1. Insert the above relations between x ~ and x ~ and the definition of E in terms of R and t .
  2. R T R = I since R is a rotation matrix.
  3. Properties of the matrix representation of the cross product.

Finally, it can be assumed that both x 3 and x 3 are > 0, otherwise they are not visible in both cameras. This gives

0 = ( x ~ ) T E x ~ = 1 x 3 ( x ~ ) T E 1 x 3 x ~ = ( y ) T E y

which is the constraint that the essential matrix defines between corresponding image points.

Properties of the essential matrix

Not every arbitrary 3 × 3 matrix can be an essential matrix for some stereo cameras. To see this notice that it is defined as the matrix product of one rotation matrix and one skew-symmetric matrix, both 3 × 3 . The skew-symmetric matrix must have two singular values which are equal and another which is zero. The multiplication of the rotation matrix does not change the singular values which means that also the essential matrix has two singular values which are equal and one which is zero. The properties described here are sometimes referred to as internal constraints of the essential matrix.

If the essential matrix E is multiplied by a non-zero scalar, the result is again an essential matrix which defines exactly the same constraint as E does. This means that E can be seen as an element of a projective space, that is, two such matrices are considered equivalent if one is a non-zero scalar multiplication of the other. This is a relevant position, for example, if E is estimated from image data. However, it is also possible to take the position that E is defined as

E = [ t ] × R

and then E has a well-defined "scaling". It depends on the application which position is the more relevant.

The constraints can also be expressed as

det E = 0

and

2 E E T E tr ( E E T ) E = 0.

Here the last equation is matrix constraint, which can be seen as 9 constraints, one for each matrix element. These constraints are often used for determining the essential matrix from five corresponding point pairs.

The essential matrix has five or six degrees of freedom, depending on whether or not it is seen as a projective element. The rotation matrix R and the translation vector t have three degrees of freedom each, in total six. If the essential matrix is considered as a projective element, however, one degree of freedom related to scalar multiplication must be subtracted leaving five degrees of freedom in total.

Estimation of the essential matrix

Given a set of corresponding image points it is possible to estimate an essential matrix which satisfies the defining epipolar constraint for all the points in the set. However, if the image points are subject to noise, which is the common case in any practical situation, it is not possible to find an essential matrix which satisfies all constraints exactly.

Depending on how the error related to each constraint is measured, it is possible to determine or estimate an essential matrix which optimally satisfies the constraints for a given set of corresponding image points. The most straightforward approach is to set up a total least squares problem, commonly known as the eight-point algorithm.

Determining R and t from E

Given that the essential matrix has been determined for a stereo camera pair, for example, using the estimation method above this information can be used for determining also the rotation and translation (up to a scaling) between the two camera's coordinate systems. In these derivations E is seen as a projective element rather than having a well-determined scaling.

The following method for determining R and t is based on performing a SVD of E , see Hartley & Zisserman's book. It is also possible to determine R and t without an SVD, for example, following Longuet-Higgins' paper.

Finding one solution

An SVD of E gives

E = U Σ V T

where U and V are orthogonal 3 × 3 matrices and Σ is a 3 × 3 diagonal matrix with

Σ = ( s 0 0 0 s 0 0 0 0 )

The diagonal entries of Σ are the singular values of E which, according to the internal constraints of the essential matrix, must consist of two identical and one zero value. Define

W = ( 0 1 0 1 0 0 0 0 1 )   with   W 1 = W T = ( 0 1 0 1 0 0 0 0 1 )

and make the following ansatz

[ t ] × = U W Σ U T R = U W 1 V T

Since Σ may not completely fulfill the constraints when dealing with real world data (f.e. camera images), the alternative

[ t ] × = U Z U T   with   Z = ( 0 1 0 1 0 0 0 0 0 )

may help.

Showing that it is valid

First, these expressions for R and [ t ] × do satisfy the defining equation for the essential matrix

[ t ] × R = U W Σ U T U W 1 V T = U Σ V T = E

Second, it must be shown that this [ t ] × is a matrix representation of the cross product for some t . Since

W Σ = ( 0 s 0 s 0 0 0 0 0 )

it is the case that W Σ is skew-symmetric, i.e., ( W Σ ) T = W Σ . This is also the case for our [ t ] × , since

( [ t ] × ) T = U ( W Σ ) T U T = U W Σ U T = [ t ] ×

According to the general properties of the matrix representation of the cross product it then follows that [ t ] × must be the cross product operator of exactly one vector t .

Third, it must also need to be shown that the above expression for R is a rotation matrix. It is the product of three matrices which all are orthogonal which means that R , too, is orthogonal or det ( R ) = ± 1 . To be a proper rotation matrix it must also satisfy det ( R ) = 1 . Since, in this case, E is seen as a projective element this can be accomplished by reversing the sign of E if necessary.

Finding all solutions

So far one possible solution for R and t has been established given E . It is, however, not the only possible solution and it may not even be a valid solution from a practical point of view. To begin with, since the scaling of E is undefined, the scaling of t is also undefined. It must lie in the null space of E since

E t = R [ t ] × t = 0

For the subsequent analysis of the solutions, however, the exact scaling of t is not so important as its "sign", i.e., in which direction it points. Let t ^ be normalized vector in the null space of E . It is then the case that both t ^ and t ^ are valid translation vectors relative E . It is also possible to change W into W 1 in the derivations of R and t above. For the translation vector this only causes a change of sign, which has already been described as a possibility. For the rotation, on the other hand, this will produce a different transformation, at least in the general case.

To summarize, given E there are two opposite directions which are possible for t and two different rotations which are compatible with this essential matrix. In total this gives four classes of solutions for the rotation and translation between the two camera coordinate systems. On top of that, there is also an unknown scaling s > 0 for the chosen translation direction.

It turns out, however, that only one of the four classes of solutions can be realized in practice. Given a pair of corresponding image coordinates, three of the solutions will always produce a 3D point which lies behind at least one of the two cameras and therefore cannot be seen. Only one of the four classes will consistently produce 3D points which are in front of both cameras. This must then be the correct solution. Still, however, it has an undetermined positive scaling related to the translation component.

It should be noted that the above determination of R and t assumes that E satisfy the internal constraints of the essential matrix. If this is not the case which, for example, typically is the case if E has been estimated from real (and noisy) image data, it has to be assumed that it approximately satisfy the internal constraints. The vector t ^ is then chosen as right singular vector of E corresponding to the smallest singular value.

3D points from corresponding image points

The problem to be solved there is how to compute ( x 1 , x 2 , x 3 ) given corresponding normalized image coordinates ( y 1 , y 2 ) and ( y 1 , y 2 ) . If the essential matrix is known and the corresponding rotation and translation transformations have been determined, this algorithm (described in Longuet-Higgins' paper) provides a solution.

Let r k denote row k of the rotation matrix R :

R = ( r 1 r 2 r 3 )

Combining the above relations between 3D coordinates in the two coordinate systems and the mapping between 3D and 2D points described earlier gives

y 1 = x 1 x 3 = r 1 ( x ~ t ) r 3 ( x ~ t ) = r 1 ( y t / x 3 ) r 3 ( y t / x 3 )

or

x 3 = ( r 1 y 1 r 3 ) t ( r 1 y 1 r 3 ) y

Once x 3 is determined, the other two coordinates can be computed as

( x 1 x 2 ) = x 3 ( y 1 y 2 )

The above derivation is not unique. It is also possible to start with an expression for y 2 and derive an expression for x 3 according to

x 3 = ( r 2 y 2 r 3 ) t ( r 2 y 2 r 3 ) y

In the ideal case, when the camera maps the 3D points according to a perfect pinhole camera and the resulting 2D points can be detected without any noise, the two expressions for x 3 are equal. In practice, however, they are not and it may be advantageous to combine the two estimates of x 3 , for example, in terms of some sort of average.

There are also other types of extensions of the above computations which are possible. They started with an expression of the primed image coordinates and derived 3D coordinates in the unprimed system. It is also possible to start with unprimed image coordinates and obtain primed 3D coordinates, which finally can be transformed into unprimed 3D coordinates. Again, in the ideal case the result should be equal to the above expressions, but in practice they may deviate.

A final remark relates to the fact that if the essential matrix is determined from corresponding image coordinate, which often is the case when 3D points are determined in this way, the translation vector t is known only up to an unknown positive scaling. As a consequence, the reconstructed 3D points, too, are undetermined with respect to a positive scaling.

References

Essential matrix Wikipedia