Quick links

How are the Internal and External Camera Parameters defined? -PIX4Dmapper

This article describes in detail the mathematical models behind the camera's internal and external parameters.

1. Camera external parameters

The external camera parameters are different for each image. They are given by:

  • T = (Tx, Ty, Tz) the position of the camera projection center in world coordinate system.
  • R the rotation matrix that defines the camera orientation with angles ω, φ, κ (PATB convention).

If X = (X, Y, Z) is a 3D point in world coordinate system, its position X' = (X', Y', Z') in camera coordinate system is given by:

Figure 1. 3D geometry of camera externals. Looking from T towards the 3D point X shows the image as seen on the screen. The world coordinate system is defined as Z pointing up, Y pointing North and X pointing East.
2. From 3D to 2D: Camera internal parameters
2.1 Perspective lens
2.1.1 Camera without distortion model

The pixel coordinate (xu, yu) of the 3D point projection without distortion model is given by:

Where f is the focal length in pixel, and (cx, cy) the principal point in pixel coordinates.

Figure 2. Geometry of a perspective camera without distortion. Looking from T' towards the 3D point X' shows the image as seen on the screen, the origin of the image coordinate system is at the lower-left corner of the image. The image coordinates systems (X', Y', Z') in Figures 1 and 2 correspond.
2.1.2 Camera with distortion model

Let:

be the homogeneous point,

the squared 2D radius from the optical center, R1, R2, R3 the radial and T1, T2 the tangential
distortion coefficients. The distorted homogeneous point in camera coordinate system (xhd, yhd)
is given by:

The pixel coordinate (xd, yd) of the 3D point projection with distortion model is given by:

Where f is the focal length in pixel, and (cx, cy) the principal point in pixel coordinates.

2.2 Fisheye lens

The distortion for a fisheye lens is defined by:

  • The parameters C, D, E, F that describe an affine deformation of the circular image in
    pixel coordinates.
    The diagonal elements of the affine matrix can be related to the focal length f:


    The off-diagonal elements are connected to the distortion of the projected image circle,
    which, in the most general case, can be a rotated ellipse.

  • The coefficients p2, p3, p4 of a polynomial:

    Where:

The pixel coordinate (xd, yd) of the 3D point projection with a fisheye distortion model is
given by

Where:

And (cx, cy) is the principal point in pixel coordinates.

Example:

When using an 8mm Sigma lens on a Canon 6D camera with an image size of 5472 x 3648 pixel(figure. 3), the internal parameters can be initialized as follows:

  • (cx, cy) = ( 5472/2, 3648/2 ) pixel is the center of the projected image circle
  • p2 = p3 = p4 = 0
  • p1 = 1
  • C = F = 1780 pixel is the radius of the image circle
  • E = D = 0
Figure 3. The distortion of an 8mm Sigma lens on a Canon 6D.
3. Camera Rig External Parameters

A camera rig consists of multiple cameras that are connected together with geometric constraints. A camera rig has the following characteristics:

  • One camera is taken as reference (master) camera with a given position Tm, and orientation Rm in world coordinates.
  • All the other cameras are secondary cameras with position Ts and orientation Rs in world coordinates.
  • For each secondary camera, the relative translation Trel and rotation Rrel with respect to the reference camera is known.

The position and orientation for secondary rig cameras are defined w.r.t. the reference (master) camera such that:

The position X' of a 3D point in the reference (master) camera coordinate system is given by:

The position X' of a 3D point in the coordinate system of a secondary camera is given by:

Once the 3D point in camera coordinates is calculated, the projection works in the same way as for any other camera as described in section 2.