Generate apriltags, calibration targets, and camera (mono/stereo) calibration
Project description
Apriltag Camera Calibration Board Generator
Why? There didn't really seem to be an easy way to do this IMHO.
This library is able to produce both generation 2 and 3 apriltags all via python ( no C/C++ library compiling and linking).
However, you will need another library (like cv2.aruco) to decode the tags ... see below for more info.
Install
pip install moms_apriltag
Examples / Usage
See the jupyter notebooks in docs/jupyter folder for how to use this.
This package create a simple numpy image that can then be saved
to a PNG or JPEG image and printed. For circular or custom tags,
there is a toRGBA() function to save the tag to a png using
any image library that can accept numpy array images.
Supported families are shown in the table below in the image and table:
| Family | Generation | Hamming | Size | Data Bits | Unique Tags |
|---|---|---|---|---|---|
tag16h5 |
2 | 5 | 4x4 | 16 | 30 |
tag25h9 |
2 | 9 | 5x5 | 25 | 35 |
tag36h10 |
2 | 10 | 5x5 | 36 | 2,320 |
tag36h11 |
2 | 11 | 5x5 | 36 | 587 |
tagCircle21h7 |
3 | 7 | 9x9 | 36 | 38 |
tagCircle49h12 |
3 | 12 | 11x11 | 49 | 65,535 |
tagCustom48h12 |
3 | 12 | 10x10 | 48 | 42,211 |
tagStandard41h12 |
3 | 12 | 9x9 | 41 | 2,115 |
tagStandard52h13 |
3 | 13 | 10x10 | 52 | 48,714 |
#!/usr/bin/env python3
from moms_apriltag import ApriltagBoard
import imageio
board = ApriltagBoard.create(4,6,"tag25h9", 0.02)
tgt = board.board
filename = "apriltag_target.png"
imageio.imwrite(filename, tgt)
# for AprilTag v2
from moms_apriltag import TagGenerator2
from matplotlib import pyplot as plt
tg = TagGenerator2("tag16h5")
tag = tg.generate(4)
plt.imshow(tag, cmap="gray)
# for AprilTag v3
from moms_apriltag import TagGenerator3
from matplotlib import pyplot as plt
tg = TagGenerator3("tagStandard41h12")
tag = tg.generate(137)
plt.imshow(tag, cmap="gray)
Apriltags using opencv-contrib-python for Camera Calibration Target Detection
This library uses the builtin cv2.aruco module that can detect:
DICT_APRILTAG_16H5DICT_APRILTAG_25h9DICT_APRILTAG_36h10DICT_APRILTAG_36h11
Decoders
cv2.aruco for calibration is built in, but it can decode generation 2 tags only.
- pupil labs (tested): https://github.com/pupil-labs/apriltags can decode generation 2 and 3 tags
- WillB97 (untested): https://github.com/WillB97/pyapriltags can decode generation 2 and 3 tags
Todo
- change the way the board is created, do a fixed scale size and add a margin with text saying the orientation, family, size, and maybe in the small squares next to the tags, put the number of the tag (number is for the lower left apriltag). I think this would help debugging and understanding what is going on
- insert stereo calibration code using pupil labs?
- move the
opencv_cameracalibration code withapriltagshere - refactor board code
- enable apriltag v3 markers in board
MIT License
Copyright (c) 2020 Kevin J. Walchko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file moms_apriltag-2023.1.15.tar.gz.
File metadata
- Download URL: moms_apriltag-2023.1.15.tar.gz
- Upload date:
- Size: 2.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.9 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5ae39fd01d9564cbe7e3cf2a768617a2c85775c1e911946ed1d9f8b5421083b
|
|
| MD5 |
ffc5f4339d74bc831b6e6271494e60f0
|
|
| BLAKE2b-256 |
d50b72b03320fffc595f62cda0555f6c4baa0a43b635cb5161dc98a204b05199
|
File details
Details for the file moms_apriltag-2023.1.15-py3-none-any.whl.
File metadata
- Download URL: moms_apriltag-2023.1.15-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.9 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c168a0e809a5cf5bb849b1b649816be629030a0eb25833db5850094dd95996b
|
|
| MD5 |
772cb65c738c06e98bdf0e9d0100bd42
|
|
| BLAKE2b-256 |
3a3ed6b49df575c9d1da1722e2e0a89050d2a9cfbb9c5376aadf3e2f8f99237b
|