Goal
Given plane-to-image homographies from views of one or more planar calibration targets, recover the camera intrinsic matrix (focal length , aspect ratio , principal point , skew ). The method shares the core mathematical framework with Zhang's planar calibration — both papers derive the same two linear IAC constraints per homography from the orthonormality of the rotation columns. The distinguishing contributions are an exhaustive singularity catalogue (Tables 1 and 2 of the paper) and a generalisation to variable intrinsics (zooming or focusing cameras with per-view focal length).
Algorithm
A planar calibration target at maps to its image by (Eq. 2 of paper, dropping the third column of ). The first two columns of are orthonormal, which encodes two homogeneous linear constraints on the image of the absolute conic per view:
where is the -th column of . With skew fixed to zero, has 5 degrees of freedom and is encoded as the 5-vector . Stacking homographies yields a design matrix ; the IAC vector is the smallest right singular vector of .
Once is recovered, the intrinsic parameters extract in closed form (Eq. 5):
For a zooming camera where focal length (or focal length plus principal point) varies per view, each new view introduces additional unknowns (, or ) that are added as new columns to the design matrix (§4.2). The aspect ratio is assumed constant across views (the paper explicitly excludes independently varying aspect ratios). The linear structure is preserved; the SVD recovers all intrinsics simultaneously. With zoom positions and 3 new unknowns per view, the system is — adequate redundancy requires planes per zoom position.
- Build design matrix . For each , extract two rows from Eq. 4 (rewritten as linear in ). Stack into .
- Apply prior knowledge (§4.1, optional). Eliminate columns of corresponding to known intrinsics: known aspect ratio → drop ; known → drop ; known → drop .
- Column-rescale so each column has unit norm. This step "proved to be crucial" (§4.3); without it the SVD solution is dominated by the largest-scale column and the recovered IAC is unreliable.
- Solve by SVD; take as the right singular vector of smallest singular value.
- Extract from via Eq. 5 (or equivalent Cholesky decomposition). Verify is positive-definite — indefinite indicates a degenerate or badly conditioned configuration.
- Recover per-view extrinsics from each as in Zhang's algorithm (Step 5 of Zhang's procedure): from ; ; project to if needed.
Remarks
- Singularity catalogue. Tables 1 and 2 of the paper enumerate every plane-orientation configuration that renders one or more intrinsic parameters unrecoverable. Selected key cases:
- Plane parallel to the image plane — only and estimable. The homography degenerates to a similarity; no focal-length information.
- Plane perpendicular to the image plane — only estimable. Aspect ratio and focal length unrecoverable.
- Two planes related by reflection (vanishing lines mutually reflected across both image axes) — full singularity. No intrinsic parameter is estimable. This is geometrically equivalent to an orbit-like camera motion that maps the circular points of the first plane onto those of the second.
- Vanishing-line intersection on a principal-point axis — the corresponding principal-point coordinate is unrecoverable. Awareness of this catalogue is essential when designing calibration rigs and when diagnosing unexpected calibration failures.
- Circular-points geometric framing. Each plane in 3D has two circular points at infinity (, in its metric frame). The plane-to-image homography maps these to in the image. The IAC is the locus of all such circular-point images across all plane orientations — each non-parallel new plane adds a new pair of circular-point images and two independent constraints. Singularities arise when successive views contribute the same (or dependent) circular-point projections.
- No distortion model. §4.3 acknowledges distortion as future work; the algorithm is pinhole-only. For real cameras with appreciable lens distortion, follow with Zhang's full-pipeline LM refinement using two-term radial — Sturm-Maybank's IAC vector serves as the linear initialisation.
- Column rescaling is critical, row rescaling is dangerous. Columns of correspond to entries with very different natural scales (depending on focal length and resolution); column rescaling to unit norm is essential. Row rescaling, by contrast, would amplify near-zero rows that arise near singular configurations — the paper explicitly warns against it (§4.3).
- Variable-intrinsics is the unique generalisation. Zhang assumes constant intrinsics across views; Sturm-Maybank §4.2 accommodates a zooming camera by treating (or ) as per-view unknowns. Table 4 of the paper reports focal-length error across 5 zoom positions with 3 planes per position.
- Compared with Zhang: see When to choose Zhang over Sturm-Maybank on the Zhang page, which hosts the comparison per the "more general scope" tiebreaker (Zhang covers the end-to-end calibration pipeline with distortion and LM refinement; Sturm-Maybank focuses on the linear IAC step plus singularity analysis and variable intrinsics).
References
- P. F. Sturm, S. J. Maybank. On Plane-Based Camera Calibration: A General Algorithm, Singularities, Applications. IEEE CVPR 1999, pp. 432–437. DOI: 10.1109/CVPR.1999.786974. pdf
- Z. Zhang. A Flexible New Technique for Camera Calibration. IEEE TPAMI 22(11)–1334, 2000. (Concurrent independent derivation of the same two IAC constraints; the more practical end-to-end pipeline.)
- O. D. Faugeras. Stratification of three-dimensional vision: projective, affine, and metric representations. JOSA A 12(3)–484, 1995. (IAC as the link between projective and metric reconstruction.)
- R. K. Lenz, R. Y. Tsai. Techniques for calibration of the scale factor and image center for high accuracy 3D machine vision metrology. IEEE TPAMI 10(5)–720, 1988. (Earlier planar calibration work cited as antecedent.)