Neha Patil (Editor)

Perspective n Point

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

Perspective-n-Point is the problem of estimating the pose of a calibrated camera given a set of n 3D points in the world and their corresponding 2D projections in the image. The camera pose consists of 6 degrees-of-freedom (DOF) which are made up of the rotation (roll, pitch, and yaw) and 3D translation of the camera with respect to the world. This problem originates from camera calibration and has many applications in computer vision and other areas, including 3D pose estimation, robotics and augmented reality. A commonly used solution to the problem exists for n = 3 called P3P, and many solutions are available for the general case of n ≥ 3. Implementations of these solutions are also available in open source software.

Contents

Definition

Given a set of n 3D points in a world reference frame and their corresponding 2D image projections as well as the calibrated intrinsic camera parameters, determine the 6 DOF pose of the camera in the form of its rotation and translation with respect to the world. This follows the perspective project model for cameras:

s p c = K [ R | T ] p w .

where p w = [ x y z 1 ] T is the homogeneous world point, p c = [ u v 1 ] T is the corresponding homogeneous image point, K is the matrix of intrinsic camera parameters, (where f x and f y are the scaled focal lengths, γ is the skew parameter which is sometimes assumed to be 0, and ( u 0 , v 0 ) is the principal point), s is a scale factor for the image point, and R and T are the desired 3D rotation and 3D translation of the camera (extrinsic parameters) that are being calculated. This leads to the following equation for the model:

s [ u v 1 ] = [ f x γ u 0 0 f y v 0 0 0 1 ] [ r 11 r 12 r 13 t 1 r 21 r 22 r 23 t 2 r 31 r 32 r 33 t 3 ] [ x y z 1 ] .

Assumptions and Data Characteristics

There are a few preliminary aspects of the problem that are common to all solutions of PnP. The assumption made in most solutions is that the camera is already calibrated. Thus, its intrinsic properties are already known, such as the focal length, principal image point, skew parameter, and other parameters. Some methods, such as UPnP. or the Direct Linear Transform (DLT) applied to the projection model, are exceptions to this assumption as they estimate these intrinsic parameters as well as the extrinsic parameters which make up the pose of the camera that the original PnP problem is trying to find.

For each solution to PnP, the chosen point correspondences cannot be coplanar. In addition, PnP can have multiple solutions, and choosing a particular solution would require post-processing of the solution set. Furthermore, using more point correspondences can reduce the impact of noisy data when solving PnP. RANSAC is also commonly used with a PnP method to make the solution robust to outliers in the set of point correspondences. Most methods, however, assume that the data is noise-free.

Methods

This following section describes two common methods that can be used to solve the PnP problem that are also readily available in open source software and how RANSAC can be used to deal with outliers in the data set.

P3P

When n = 3, the PnP problem is in its minimal form of P3P and can be solved with three point correspondences. However, with just three point correspondences, P3P yields many solutions, so a fourth correspondence is used in practice to remove ambiguity. The setup for the problem is as follows.

Let P be the center of projection for the camera, A, B, and C be 3D world points with corresponding images points u, v, and w. Let X = |PA|, Y = |PB|, Z = |PC|, α = B P C , β = A P C , γ = A P B , p = 2 cos α , q = 2 cos β , r = 2 cos γ , a = | A B | , b = | B C | , c = | A C | . This forms triangles PBC, PAC, and PAB from which we obtain the equation system for P3P:

{ Y 2 + Z 2 Y Z p b 2 = 0 Z 2 + X 2 X Z q c 2 = 0 X 2 + Y 2 X Y r a 2 = 0 .

It's common to normalize the image points before solving P3P. Solving the P3P system results in four possible solutions for R and T. The fourth world point D and its corresponding image point z are then used to find the best solution among the four. The algorithm for solving the problem as well as the complete solution classification for it is given in the 2003 IEEE Transactions on Pattern Analysis and Machine Intelligence paper by Gao, et al. An open source implementation of the P3P can be found in OpenCV's calib3d module in the solvePnP function.

EPnP

Efficient PnP (EPnP) is a method developed by Lepetit, et al. in their 2008 International Journal of Computer Vision paper that solves the general problem of PnP for n ≥ 3. This method is based on the notion that each of the n points (which are called reference points) can be expressed as a weighted sum of four virtual control points. Thus, the coordinates of these control points become the unknowns of the problem. It is from these control points that the final pose of the camera is solved for.

As an overview of the process, first note that each of the n reference points in the world frame, p i w , and their corresponding image points, p i c , are weighted sums of the four controls points, c j w and c j c respectively, and the weights are normalized per reference point as shown below. All points are expressed in homogeneous form.

p i w = j = 1 4 α i j c j w p i c = j = 1 4 α i j c j c j = 1 4 α i j = 1

From this, the derivation of the image reference points becomes

s i p i c = K j = 1 4 α i j c i c .

The homogeneous image control point has the form c j c = [ x j c y j c z j c ] T . Rearranging the image reference point equation yields the following two linear equations for each reference point:

j = 1 4 α i j f x x j c + α i j ( u 0 u i ) z j c = 0 j = 1 4 α i j f y y j c + α i j ( v 0 v i ) z j c = 0 .

Using these two equations for each of the n reference points, the system M x = 0 can be formed where x = [ c 1 c T c 2 c T c 3 c T c 4 c T ] T . The solution for the control points exists in the null space of M and is expressed as

x = i = 1 N β i v i

where N is the number of null singular values in M and each v i is the corresponding right singular vector of M . N can range from 1 to 4. After calculating the initial coefficients β i , the Gauss-Newton algorithm is used to refine them. The R and T matrices that minimize the reprojection error of the world reference points, p i w , and their corresponding actual image points p i c , are then calculated.

This solution has O ( n ) complexity and works in the general case of PnP for both planar and non-planar control points. Open source software implementations of this method can be found in OpenCV's Camera Calibration and 3D Reconstruction module in the solvePnP function as well as from the code published by Lepetit, et al. at their website, CVLAB at EPFL.

Using RANSAC

PnP is prone to errors if there are outliers in the set of point correspondences. Thus, RANSAC can be used in conjunction with existing solutions to make the final solution for the camera pose more robust to outliers. An open source implementation of PnP methods with RANSAC can be found in OpenCV's Camera Calibration and 3D Reconstruction module in the solvePnPRansac function

References

Perspective-n-Point Wikipedia