Home

Awesome

Camera Calibration Script

Overview

This Python script is designed for camera calibration using a chessboard pattern. It computes the camera matrix and distortion coefficients, which are essential for correcting lens distortion and understanding the camera's intrinsic parameters. The script then outputs the calibration data as an entry in json format suitable for inclusion in OpenAthena's droneModels.json calibration database.

This script does not yet support and will not work correctly for fisheye camera lenses.

Included in this repository is the file 36in_x_48in_9col_12row_100mm_cv_poster.pdf, which contains a chessboard pattern with a square size of 100mm sized to print on a 36" x 48" poster. It is recommended to turn this poster sideways for taking pictures with the camera you wish to calibrate.

You may also generate a pattern of a different size using this webpage: https://calib.io/pages/camera-calibration-pattern-generator

Set the Target Type to Checkerboard and adjust width, height rows, columns and checker width as needed to fit your print format. Use these new values with the script as described below.

Picture taken by Mini3Pro of the chessboard pattern printed on poster paper

Taking Calibration Images

The number of calibration images you use and the way you take them are crucial for achieving accurate camera calibration. Here's some guidance:

Number of Calibration Images

Tips for Taking Calibration Images

  1. Cover the Entire Field of View:

    • Ensure that the chessboard is captured from different parts of the camera's field of view in various images. This includes corners and edges.
    • Avoid using only center-focused images.
  2. Vary the Orientation and Angle:

    • Take pictures from various angles: some tilted up, down, left, right, and some rotated at slight angles.
    • This helps in accurately capturing the camera's lens distortions.
  3. Vary the Distance:

    • Include shots from different distances – some close-up shots of the chessboard and some from farther away.
    • Ensure the chessboard is clearly visible and occupies a significant portion of the frame in each image.
  4. Avoid Reflections and Shadows:

    • Ensure consistent lighting and avoid strong shadows or reflections on the chessboard, as these can interfere with corner detection.
  5. Use the full sensor:

    • Most cameras crop pixels from top and bottom of their 4:3 image sensor to make it fit in widescreen 16:9. Set your drone camera to 4:3 to ensure you get full coverage of the image sensor
  6. Ensure the Entire Chessboard is Visible:

    • All four corners of the pattern should be in the frame for each image.
  7. Consistent Chessboard Orientation:

    • While varying angles and distances, keep the orientation of the chessboard consistent (e.g., always keep the same corner or side of the chessboard in the same relative position).
  8. Use a Stable Chessboard Setup:

    • The chessboard should be flat and rigid. Any bending or flexing can distort the pattern and affect accuracy.

Post-processing the Images

Installation

Requirements

Clone this project using git (or download as a zip file and extract it)

git clone https://github.com/Theta-Limited/camera-calibration.git

Enter the project directory, then install the necessary libraries using:

pip install -r requirements.txt # may be 'pip3' on some systems

Usage

The script can be executed from the command line with the following arguments:

Command Line Syntax

python3 camera-calibration.py --image_dir path/to/images --square_size 100 --num_rows 9 --num_cols 12

Alternatively, if you do not specify the --image_dir, the script will use the current working directory:

python3 camera-calibration.py --square_size 100 --num_rows 9 --num_cols 12

Important Notes

Output

The script outputs the camera matrix and distortion coefficients to:

Both are formatted as a json entry in the same format used in the droneModels.json database.

E.g: here is what the ouptut json looks like for a DJI Mini 3 Pro:

    {
      "makeModel": "djiFC3582",
      "isThermal": false,
      "ccdWidthMMPerPixel": "0.0023883764/1.0",
      "ccdHeightMMPerPixel": "0.002379536/1.0",
      "widthPixels": 4032,
      "heightPixels": 3024,
      "comment": "DJI Mini 3 Pro",
      "lensType": "perspective",
      "radialR1": 0.11416479395258083,
      "radialR2": -0.26230384345579,
      "radialR3": 0.22906477778853437,
      "tangentialT1": -0.004601610146546272,
      "tangentialT2": 0.0026292475166887
    }

Contributing your calibration to OpenAthena

Either:

https://github.com/Theta-Limited/DroneModels

Legal:

By making such a contribution of your drone's calibration data, you accept to the terms of Theta's Contributor License Agreement