More robust checkerboard detection, similar algorithm to libcbdetect
Project description
Checkerboard
I could not find any libraries to find checkerboards robustly in Python, except for OpenCV. However, OpenCV's checkerboard tends to fail when the checkerboard is somewhat blurred or rotated.
Hence, this library was born. It may be slightly slower than OpenCV, but it will find that checkerboard.
Comparison of OpenCV vs this library (OpenCV on the left, checkerboard on the right):
Quickstart
You can install checkerboard easily through pip:
pip install checkerboard
Then you can go ahead and detect checkerboards like so:
from checkerboard import detect_checkerboard
size = (9, 6) # size of checkerboard
image = ... # obtain checkerboard
corners, score = detect_checkerboard(image, size)
The corners
returned are in the same format as the
findChessboardCorners
function from OpenCV, and are already computed
to subpixel precision.
The score
returned is a metric of the quality of the checkerboard
detection. A perfectly detected checkerboard would have a score of 0,
whereas a bad detection would have a score of 1.
References
The implementation of checkerboard detection is mainly based on libcbdetect and accompanying paper:
@INPROCEEDINGS{Geiger2012ICRA,
author = {Andreas Geiger and Frank Moosmann and Oemer Car and Bernhard Schuster},
title = {Automatic Calibration of Range and Camera Sensors using a single Shot},
booktitle = {International Conference on Robotics and Automation (ICRA)},
year = {2012}
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file checkerboard-0.2.4-py3-none-any.whl
.
File metadata
- Download URL: checkerboard-0.2.4-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fda1b835bb0c861fa90e8f3555629efc5457bd6c6afa36b4ca3c5c7b1417969 |
|
MD5 | 9e227d8ebbc8a601885e3120507c96f4 |
|
BLAKE2b-256 | f47ddf224f624bfec4ca0a32d36bcb4b944918964cb665715d3db3689cc50c2b |