An Introduction to Epipolar Geometry
Understanding the intuition behind 3D to 2D mappings, the Fundamental Matrix with a demo
In this post we will take a look at how Camera Projections work. A demo at the end will illustrate the important segments of the theory. Prerequisites to understand the material are available in the Readings & References section below.
Epipolar Geometry 1 is the intrinsic projective geometry between two views. See A Primer on Projective Geometry for a concise introduction. This knowledge becomes an interesting piece in the puzzle of estimating the 3D geometry of a given image projection and the estimated 3D model can then be applied to a myriad of meaningful real-world problems.
To get there, we will first establish a theoretical framework on how projections are formed and realize some interesting properties.
The Pinhole Camera Model
We will start with a very simple camera where the centre of projection is at the origin of the Euclidean Coordinate System. Let be the plane of projection, more simply the plane where the points in the 3D world space are projected. It is also called the image plane or the focal plane.
is the camera centre and is the principal point. By virtue of similar triangles, we can establish a relation between a point in 3D space at to a point on the focal plane at , a distance of focal length . This has been visualized in the figure above on the right.
A similar analysis (think of viewing the plane down the axis) gives us
and we equivalently define a mapping (by dropping the coordinate)
More formally, this can be defined in terms of homogeneous coordinates and a matrix transform as
This matrix is known as the Camera Projection Matrix. To adjust for the reference frame in the image plane - origin at corner v/s origin at the center, we add a translation component to the left matrix of .
and this is called the Camera Calibration Matrix. For added generality to allow for non-square pixels we multiple the matrix with an extra factor of where is the pixels per unit distance. There’s another possibility of distortion due to the and axes not being perpendicular and this is denoted by . The final matrix then becomes -
In most cases, the camera coordinates will be with respect to a different coordinate system where it is not at the origin in the world coordinate system. And as we had seen in an earlier discussion on projective geometry, Euclidean transformations consist of a rotation and a translation component. Hence, any coordinate can be shifted from the world coordinate space to the camera coordinate space (where the camera is the origin) with the equation -
where is the rotation matrix and represents a translation with respect to the camera center to make it the origin. Combining the camera calibration matrix and the coordinate frame shifting above, we can draw a mapping between the point in world coordinate system and the point in the image plane, represented by
Parameters in are called the camera intrinsics (they never change) and the remaining parameters and are called the camera extrinsics. In literature, these terms will come often and now we know how these are constructed.
Epipolar Geometry
Now that we have established all the camera parameters, let us consider two camera centers and with both image planes shown in the figure below. These cameras project a point in the world coordinate system to and in respective image planes. The plane formed by all these points is known as the epipolar plane.
The line joining the two camera centers is known as the baseline and intersects both planes at and . These points are known as the epipoles, visualized on the right. We are aiming to establish and constraint between and . If one observes the figure on the right above, the baseline () and the ray back-projected from () form the epipolar plane . When intersects with the image plane on the right, it forms the line which is known as the epipolar line corresponding to . A search for the point correspondence of denoted by is now constrained to this epipolar line which comes as a direct consequence of the way we constructed .
If we rotate the epipolar plane with baseline as the axis, we get a pencil of planes and all these planes will still intersect at the epipoles and . This is a very interesting result!
The Fundamental Matrix
We’ve established some basics for epipolar geometry and realized how images are projected by a given camera matrix . Now we will give a more formal treatment to the problem both algebraically and geometrically and arrive at a very important matrix known as the Fundamental Matrix (literally!).
Construction via the Epipolar Plane
In a previous discussion (see Readings), we had seen Projectivities which are mappings from point in one plane to another. By the above construction of the epipolar plane, we can assert that a similar matrix exists, known as the Planar Homography .
Construction via Camera Matrices
In another interesting result, Fundamental Matrix does not need the epipolar plane to be necessarily defined. Let us see how it directly relates to the camera matrices we described above.
If one remembers the alternate definition of epiline corresponding to point , it was the image of the ray back-projected to the world coordinate in the second camera view. The solution to the equation
is given by a family of solutions in the form of
To find the epipolar line for point , we know from the above discussion that both the epipole and the point correspondence lie on the epiline. The intersection of these (from our projective geometry primer) gives us the line,
where is known as the Fundamental Matrix, a matrix of rank 2. In plain words, represents a mapping of the projective plane of the first image to a pencil of epipolar lines through .
Note that the notation is a skew-symmetric matrix equivalent for the cross product.
where is the pseudo-inverse of , giving and is the right-null space of commonly called the camera center. This has its own interesting little derivation and out of scope here.
We have two known points and on the ray which can be projected onto the second image plane via a second camera matrix and the epiline is the cross-product of these two projected points.
We have just arrived at an alternate representation of and hence we realize that epipole is actually the image of the other camera center. Again we see that
where and . Wow! We’ve discovered quite a few important relations between Homography, Camera Matrices and the Fundamental Matrix.
Properties of the Fundamental Matrix
After all the details above, it is easy to arrive and prove at the following result
where are point-to-point correspondences in the two image planes. Solution to the above equation is a fairly popular research problem. For all practical purposes, the above problem generally remains over-determined with an exact solution determined by 3 non-collinear point correspondences. Hence, techniques like the family of RANSAC are used to non-deterministically determine the best fit model via a relevant cost function like the re-projection error.
Demo Illustration
Setup
Each execution requires a stereo image pair (for this purpose I shot two-view images around my house) which represent the two image planes discussed above. To arrive at point correspondences, I use SURF to detect keypoints in both images, match them via FLANN and apply Lowe’s ratio test to filter out matches that are too far away and might be false positives. If all above sounds alien, consider it as a black box as it is out of scope for this discussion.
Then we estimate the Fundamental Matrix via RANSAC. RANSAC was covered in a previous post. Once we get that we draw the epilines on both images via for the left image plane and for the right image plane. These line equations are a direct consequence of the result .
Code
Full code is available upon request but for the purpose of this discussion, the one below should be easy to follow.
##
# Load the stereo image pair
#
image_l = cv2.pyrDown(cv2.imread('images/view_left.jpg', 0))
image_r = cv2.pyrDown(cv2.imread('images/view_right.jpg', 0))
##
# Consider this matcher a black box for the purpose of this discussion
#
matcher = SURFKeyPointMatcher()
kp_l, des_l, kp_r, des_r = matcher.detect_and_compute(image_l, image_r)
pts_l, pts_r, good_matches = matcher.find_good_matches(kp_l, des_l, kp_r, des_r)
##
# Estimate the Fundamental Matrix via RANSAC
#
pts_l = np.int32(pts_l)
pts_r = np.int32(pts_r)
F, mask = cv2.findFundamentalMat(pts_l, pts_r, cv2.FM_RANSAC)
##
# Use only the points which RANSAC determined to be model inliers
#
pts_l = pts_l[mask.ravel() == 1]
pts_r = pts_r[mask.ravel() == 1]
##
# Compute epilines. Note that right image points are used for left view
# and left image points are used for right view
#
epilines_l = cv2.computeCorrespondEpilines(pts_r, 2, F).reshape(-1, 3)
epilines_r = cv2.computeCorrespondEpilines(pts_l, 1, F).reshape(-1, 3)
image_epilines_l = draw_epilines(image_l, epilines_l)
image_epilines_r = draw_epilines(image_r, epilines_r)
cv2.imwrite('epi_left.jpg', image_epilines_l)
cv2.imwrite('epi_left.jpg', image_epilines_r)
Results
Take a look at the following resulting images from the above code which show a general sense of direction of both the camera centers. The epipoles (the point of intersection of the epilines) lie outside the visible image planes.
It goes without saying that the epilines constructed are only as good as the point correspondences. The robustness of the point correspondences is dependent on how well our keypoint detection algorithm works.
Footnotes
-
Harltey, A., & Zisserman, A. (2003). Multiple view geometry in computer vision (2. ed.). ↩