Pycalib
Simple Camera Calibration Examples in Python for Beginners
Install / Use
/learn @nbhr/PycalibREADME
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 demonstrate 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 as follows.
python3 -m pip install -U pycalib-simple
Or to use the latest version, specifiy the github repository as follows. (visit https://pypi.org/project/pycalib-simple/ to check the latest version in PyPI)
python3 -m pip install -U git+https://github.com/nbhr/pycalib.git
Notice that the pip installation does not include examples in ./ipynb/ or tools in ./tools/. To run examples and tools, download the repository explicitly. For example,
- Local: You can clone/download this repository to your local PC, and open
./ipynb/*.ipynbfiles by your local Jupyter (e.g., VSCode + Jupyter plugin). - Colaboratory: You can open each Jupyter notebook directly in Google Colaboratory by clicking the ![Open In Colab][def] buttons below.
- 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 installand!git cloneat the beginning of each notebook.) - The scripts in
./tools/are not supposed to run in Colab/Jupyter.
- 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
Usage
[Example] Calibration of 15 GoPro cameras
- Intrinsic calibration ![Open In Colab][def]
- Intrinsic camera calibration from a video of ChAruCo pattern.
- GoPro fisheye lens distortion is handled by the rational model in OpenCV
- 2D keypoint detection ![Open In Colab][def]
- ChAruCo corner detection to find 2D-2D corresponding points between cameras.
- Extrinsic calibration ![Open In Colab][def]
- Extrinsic camera calibartion from 2D-2D correspondences.
- Scale / orientation alignment ![Open In Colab][def]
- Scale / orientation alignment of the world coordinate system by capturing an AruCo marker on the floor.
Single camera
- Intrinsic calibration with charuco images ![Open In Colab][def]
- Intrinsic calibration with chessboard images ![Open In Colab][def]
- Zhang's method
- Extrinsic calibration w.r.t. a charuco board ![Open In Colab][def]
- PnP with ChAruco
- Extrinsic calibration w.r.t. a chessboard ![Open In Colab][def]
- PnP with chessboard
- Intrinsic / Extrinsic calibration with 2D-3D correspondences ![Open In Colab][def]
- for non-planar reference objects
Multiple cameras
- Multi-view triangulation ![Open In Colab][def]
- N-view DLT
- Robust brute-force multi-view triangulation ![Open In Colab][def]
- Robust but brute-force n-view DLT with occlusion handling and outlier rejection
- ChAruco diamond marker detection for 2D-2D correspondences ![Open In Colab][def]
- For extrinsic calibration using a ChAruco diamond marker.
- Also can be used for PnP, i.e., extrinsic calibration w.r.t. the diamond marker
- 2-view extrinsic calibration from 2D-2D correspondences ![Open In Colab][def]
- Decomposition of the essential matrix to $R$ and $t$.
- N-view registration ![Open In Colab][def]
- A linear registration of pairwise poses into a single coordinate system
- N-view bundle adjustment ![Open In Colab][def]
- A non-linear minization of reprojection errors
- Each camera can specify the parameters to optimize and to share with each other
- N-view time sync ![Open In Colab][def]
- GoPro compatible QR time sync pattern generator, detector, and offset estimator
- Homography ![Open In Colab][def]
- Homography from one camera plane to another
- Stereo rectification ![Open In Colab][def]
- Horizontal / vertical stereo rectification for multi-view system and triangulation in WCS
Mirror
- Mirror-based extrinsic camera calibration ![Open In Colab][def]
- Extrinsic calibration of a camera w.r.t. a reference object not directly visible from the camera.
- This is an implementation of
Takahashi, Nobuhara and Matsuyama "A New Mirror-based Camera Pose Estimation Using an Orthogonality Constraint," CVPR 2012.
- Display-camera calibration with mirrors ![Open In Colab][def]
- How to calibrate a webcam w.r.t. a display using a ChAruCo pattern.
3D-3D
- Absolute orientation (or similarity transform) between corresponding 3D points ![Open In Colab][def]
Circle / Sphere
- 3D circle estimation ![Open In Colab][def]
- 3D circle center / normal estimation from its 2D projection, i.e., 2D ellipse.
- Sphere center estimation ![Open In Colab][def]
- 3D sphere center estimation from its 2D projection, i.e., 2D ellipse.
- For extrinsic calibration using a ball.
- A color-based ball detection is provided as
tools/detect_by_color_gui.pyandtools/detect_by_color.py. The former GUI version can be used to sample foreground and background pixel colors, and the latter can be used to process each frame.
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.
- Linear calibration: Use
numpy. - Non-linear (including bundule adjustment): Try
scipy.optimize.least_squaresfirst.- Implement your objective function as simply 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.
- If your simple objective function above is unacceptably slow, try the followings in this order.
- 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).
- Make sure that the calibration runs successfully anyway. In what follows, double-check that the calibration results do not change before and after the code optimization.
- Vectorize the compu
- Implement your objective function as simply as possible. You do not need to consider the computational efficiency at all. "Done is better than perfect."
