Targetless LiDAR-Motor Calibration (LM-Calibr)
- The paper demonstrates that LM-Calibr achieves high calibration accuracy with mean rotation error < 0.04° and translation error < 1.5 mm using a two-link DH framework.
- LM-Calibr leverages adaptive voxelization and Levenberg–Marquardt minimization of plane-thickness residuals to optimize the extrinsic parameters between LiDAR and motor.
- The method supports diverse mounting configurations, enabling targetless calibration in arbitrary planar environments without reliance on special targets or structured scenes.
Targetless LiDAR-motor calibration (LM-Calibr) is a methodology designed for accurate, targetless determination of extrinsic parameters between spinning actuated LiDARs and their driving motors. Based on the Denavit–Hartenberg (DH) convention, LM-Calibr enables robust calibration across arbitrary mounting configurations without reliance on special targets or structured scenes, streamlining deployment in environments where planar features alone are present. The method is characterized by a plane-thickness cost metric, adaptive voxelization, and the use of the Levenberg–Marquardt (LM) optimization scheme, achieving high accuracy and convergence in both simulated and real-world domains (Chen et al., 22 Jan 2026).
1. Coordinate Frames and DH Parameterization
LM-Calibr formalizes the LiDAR–motor system as a serial kinematic chain using two DH links. The relevant frames are:
- World frame (): Used exclusively in downstream odometry.
- Motor frame (): Centered at the motor axis; aligns with the motor spin axis, with encoder measurement indicating its rotation.
- LiDAR frame (): Located at the LiDAR mirror center, axes fixed within the housing.
The rigid-body transformation is sought, i.e.,
for any LiDAR point . The DH parameter vector is
Where for link :
- : joint angle (motor: measured; LiDAR mirror: fixed mounting)
- : offset along
- : offset along
- : twist about (angle between and )
Physically, encode mounting error and tilt between spin axes; encode internal mirror offset.
Each link contributes a transform:
in matrix form:
with .
The full extrinsic is given by
with denoting the relevant parameter subset for the given LiDAR model.
2. Calibration Cost Metric: Plane-thickness Residual
LM-Calibr exploits static scans to optimize the calibration. An incorrect causes planar surfaces to appear as thick bands in motor frame; the calibration seeks parameter values minimizing these artifacts.
- A complete LiDAR sweep yields raw point cloud .
- Transformed to motor frame: .
- Adaptive voxelization (with scheduled root size) partitions ; local planar patches are extracted.
For each patch (with points), centroid and covariance are
Thickness is , the smallest covariance eigenvalue. The objective is
Alternatively, as point-to-plane residuals,
where is the estimated normal. For signed distances:
with .
3. Optimization Procedure
Calibration is performed using a coarse-to-fine strategy and Levenberg–Marquardt (LM) solver.
- Initialization: Requires only rough CAD value for (housing offset) and encoder reading . Other parameters initialized to either CAD or zero plus up to m perturbation.
- Adaptive voxelization: At each iteration, root voxel size shrinks from () to ().
- Iterative LM Minimization:
- Build residual as the set of point-to-plane distances.
- Compute Jacobian via closed-form derivatives.
- Solve normal equations:
- Update parameters , recompute , adjust .
- Terminate if or cost reduction .
A representative pseudocode, as reported:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Input: P_L (static scan), initial x₀, max_iters=20 Set voxel_sizes=[1.0,1.0,0.5,0.5,0.25,…] x←x₀ for k=1…max_iters do voxelize P_M = T^M_L(x) P_L with root = voxel_sizes[k] extract M_f planes {π_i}, build r(x) compute J(x), H = JᵀJ, g = Jᵀr solve (H + λ·diag(H)) Δx = –g x_new = x + Δx; if E(x_new) > E(x) increase λ else decrease λ if ‖Δx‖ < ε stop x ← x_new end for Output x* |
4. Accuracy, Convergence, and Observability
LM-Calibr has demonstrated robust convergence and high accuracy under a variety of conditions:
- Monte-Carlo simulations: 50 trials over six environments (e.g., NTU, Cave, BG), initialized with errors up to and , yield
- mean rotation error
- mean translation error
- Real-world trials: 20 per scene for both structured and unstructured (forested) settings with Mid360 and Avia sensors, evaluated on three orthogonal planes:
- mean point-to-plane residual , commensurate with LiDAR noise.
- Comparison: LM-Calibr shows lower residual error compared to LiMo-Calib in nondegenerate mounting (see Fig. 6–7 of the cited manuscript).
- Observability: Smallest eigenvalue of the Hessian remains well above zero for all practical mount angles (, ), except degenerate cases (mirror axis colinear with spin axis, i.e., or ). Parameter identifiability holds for most single-plane arrangements, with only minor degradation when the plane’s normal aligns with the spin axis.
5. Applicability Across Mounting Configurations
The two-link DH framework enables calibration for a spectrum of mounting geometries:
- Pure rotation:
- Pitch-type mount:
- Oblique mount: both and nonzero
No special targets or scene structures are required; calibration may be performed using arbitrary planar features. The only degenerate configuration is perfect colinearity of spin and mirror axes, which precludes FoV extension.
During data acquisition, the actuator must remain static, but the procedure is invariant to the motor’s velocity and acceleration profile; calibration is achieved from a single static LiDAR sweep with no reliance on motion modeling.
6. Key Equations and Figures
Central equations for LM-Calibr are as follows:
| Equation | Description |
|---|---|
| Full motor–LiDAR rigid-body transform | |
| Plane-thickness cost function | |
| LM optimization normal equations |
Refer to Fig. 1(b) for the block diagram, Fig. 3 for error histograms from Monte-Carlo trials, and Figs. 6–7 for comparative residual maps in field deployments. Supplementary sections provide full analytic expressions for Jacobians , update details, and observability plots (Chen et al., 22 Jan 2026).
7. Implementation and Resources
Source code and hardware design supporting LM-Calibr are available at github.com/zijiechenrobotics/lm_calibr. Video demonstrations are accessible at youtu.be/cZyyrkmeoSk. This suggests practical accessibility for researchers seeking to reproduce or extend LM-Calibr, with in-depth algorithmic and analytic details in the supplementary material of the referenced publication.