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/
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/*.ipynb
files by your local Jupyter. - Colaboratory: You can open each Jupyter notebook directly in Google Colaboratory by clicking the 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.)
- 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
Notice that the scripts in ./tools/
are not supposed to run in Colab/Jupyter.
Examples
- Extrinsic calibration of 15 GoPro cameras
- Given 2D-2D correspondences, this example calibrates the extrinsic parameters of 15 GoPro cams.
Single camera
- Intrinsic calibration with charuco images
- GoPro fisheye lens distortion is handled by the rational model in OpenCV
- Intrinsic calibration with chessboard images
- Zhang's method
- Extrinsic calibration w.r.t. a charuco board
- PnP with ChAruco
- Extrinsic calibration w.r.t. a chessboard
- PnP with chessboard
- Intrinsic / Extrinsic calibration with 2D-3D correspondences
- for non-planar reference objects
Multiple cameras
- Multi-view triangulation
- N-view DLT
- ChAruco diamond marker detection for 2D-2D correspondences
- for extrinsic calibration using a ChAruco diamond marker
- also can be used for PnP, i.e., extrinsic calibration w.r.t. the diamond marker
- Sphere center detection for 2D-2D correspondences
- for extrinsic calibration using a ball
- A color-based ball detection is provided as
tools/detect_by_color_gui.py
andtools/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.
- 2-view extrinsic calibration from 2D-2D correspondences
- decomposes the essential matrix to R and t
- N-view registration
- A linear registration of pairwise poses into a single coordinate system
- N-view bundle adjustment
- A non-linear minization of reprojection errors
- N-view time sync
- Aruco / Aruco diamond video maker for multi-view time sync
3D-3D
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_squares
first.- 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.
- 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 computation with
numpy
, i.e., no for-loops in the objective function.- or use
numba
(e.g.@numba.jit
)
- or use
- If the system is sparse, use
jac_sparsity
option. It makesscipy.optimize.least_squares
much faster even without analitical Jacobian. - 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.
- Reimplement in C++ with ceres-solver, g2o, or sba if the computation speed is really important. You can also consider using PyTorch/Tensorflow for GPU-acceleration and autodiff by Theseus or similar libraries.
- Implement your objective function as simple as possible. You do not need to consider the computational efficiency at all. "Done is better than perfect."
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pycalib_simple-2024.9.22.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45dd091fff8a317a5def87441a6b4b9eb9d0a3bd86e18758ebedaca7b6b5b8d8 |
|
MD5 | 713f9e70a54629eb9dc1dda757c4d1ea |
|
BLAKE2b-256 | dc9d9ee8c33c06af477fe7588c4fd1ee876efaa0aa2861f0f6c70bbc781c9c06 |
Hashes for pycalib_simple-2024.9.22.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 423e1a6c89dd376a9e39a2e04d5829ecd93a9b4d50cbe9e8022db97bca987714 |
|
MD5 | d1db83237798906572dbdbd2fd2f9d44 |
|
BLAKE2b-256 | 2ca330ffaa935e58debf7481ae7851b8e68166920cd6354ece2a2f8725aa03e3 |