Skip to main content

PyCalib: Simple Camera Calibration in Python for Beginners

Project description

Simple Camera Calibration in Python for Beginners

This is a collection of algorithms related to multiple view camera calibration in computer vision. Please note that the goal of this package is to provide minimal examples to demostrate the concept for beginners (i.e., students). For large-scale, realtime, accurate, robust, production-quality implementations, or for implementations for your specific situation, please consult your advisor.

Disclaimer

This is research software and may contain bugs or other issues -- please use it at your own risk. If you experience major problems with it, you may contact us, but please note that we do not have the resources to deal with all issues.

How to use

You can simply install the package by pip.

$ python3 -m pip install -U pycalib-simple

The pip installation, however, does not include examples in ./ipynb. To run examples, download the repository explicitly. For example,

  1. Local: You can clone/download this repository to your local PC, and open ./ipynb/*.ipynb files by your local Jupyter.
  2. Colaboratory: You can open each Jupyter notebook directly in Google Colaboratory by clicking the Open In Colab buttons below.
    • Warning: Most of them do not run properly as-is, since colab does not clone images used in the Jupyter notebooks. Please upload required files manually. (or run !pip install and !git clone at the beginning of each notebook.)

Examples

  1. Extrinsic calibration of 15 GoPro cameras Open In Colab
    • Given 2D-2D correspondences, this example calibrates the extrinsic parameters of 15 GoPro cams.

Single camera

  1. Intrinsic calibration with charuco images Open In Colab
    • GoPro fisheye lens distortion is handled by the rational model in OpenCV
  2. Intrinsic calibration with chessboard images Open In Colab
    • Zhang's method
  3. Extrinsic calibration w.r.t. a charuco board Open In Colab
    • PnP with ChAruco
  4. Extrinsic calibration w.r.t. a chassboard Open In Colab
    • PnP with chessboard
  5. Intrinsic / Extrinsic calibration with 2D-3D correspondences Open In Colab
    • for non-planar reference objects

Multiple cameras

  1. Multi-view triangulation Open In Colab
    • N-view DLT
  2. ChAruco diamond marker detection for 2D-2D correspondences Open In Colab
    • for extrinsic calibration using a ChAruco diamond marker
    • also can be used for PnP, i.e., extrinsic calibration w.r.t. the diamond marker
  3. Sphere center detection for 2D-2D correspondences Open In Colab
    • for extrinsic calibration using a ball
  4. 2-view extrinsic calibration from 2D-2D correspondences Open In Colab
    • decomposes the essential matrix to R and t
  5. N-view registration Open In Colab
    • A linear registration of pairwise poses into a single coordinate system
  6. N-view bundle adjustment Open In Colab
    • A non-linear minization of reprojection errros
  7. N-view time sync Open In Colab
    • Aruco / Aruco diamond video maker for multi-view time sync

3D-3D

  1. Absolute orientation (or similarity transform) between corresponding 3D points Open In Colab

If you need to write your own calibration ...

In general, prepare some synthetic dataset, i.e., a toy example, first so that your code can return the exact solution up to the machine epsillon. Then you can try with real data or synthetic data with noise to mimic it.

Also you may want to read Section A6.3 "A sparse Levenberg-Marquardt algorithm" of the textbook "Multiple View Geometry in Computer Vision" by Hartley and Zisserman.

  1. Linear calibration: Use numpy.
  2. Non-linear (including bundule adjustment): Try scipy.optimize.least_squares first.
    1. Implement your objective function as simple as possible. You do not need to consider the computational efficiency at all. "Done is better than perfect."
      • Test with the toy example and make sure that your objective function returns zero for the ground-truth parameter.
    2. If your simple objective function above is unacceptably slow, try the followings in this order.
      1. Ask yourself again before trying to make it faster. Is it really unacceptable? If your calibration can finish in an hour and you do not do it so often, it might be OK for example. "Premature optimization is the root of all evil." (D. Knuth).
      2. Make sure that the optimization runs successfully anyway. In what follows, double-check that the optimization results do not change before and after the optimization.
      3. Vectorize the computation with numpy, i.e., no for-loops in the objective function.
        • or use numba (e.g. @numba.jit)
      4. If the system is sparse, use jac_sparsity option. It makes the optimization much faster even without analitical Jacobian.
      5. Implement the analytical Jacobian. You may want to use maxima to automate the calculation, or you may use JAX or other autodiff solutions for this.
      6. Reimplement in C++ with ceres-solver or sba if the computation speed is really important.

Contact

Please note that this is research software and may contain bugs or other issues -- please use it at your own risk. If you experience major problems with it, you may contact us, but please note that we do not have the resources to deal with all issues.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycalib-simple-2023.12.21.1.tar.gz (25.0 kB view hashes)

Uploaded Source

Built Distribution

pycalib_simple-2023.12.21.1-py3-none-any.whl (24.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page