Skip to main content

Generate apriltags and calibration targets

Project description

Apriltag Camera Calibration Board Generator

CheckPackage GitHub Latest Version image image PyPI - Downloads

Why? There didn't really seem to be an easy way to do this IMHO.

Install

pip install moms_apriltag

Usage

See the jupyter notebook in example/examples.ipynb 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:

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

ref

#!/usr/bin/env python3
import moms_apriltag as apt
import imageio


if __name__ == '__main__':
    family = "tag36h10"
    shape = (6,8)
    filename = "apriltag_target.png"
    size = 50

    tgt = apt.board(shape, family, size)
    imageio.imwrite(filename, tgt)
# for AprilTag v2
from moms_apriltags import TagGenerator2
from matplotlib import pyplot as plt

tg = TagGenerator3("tag16h5")
tag = tg.generate(4)

plt.imshow(tag, cmap="gray)
# for AprilTag v3
from moms_apriltags import TagGenerator3
from matplotlib import pyplot as plt

tg = TagGenerator3("tagStandard41h12")
tag = tg.generate(137)

plt.imshow(tag, cmap="gray)

Todo

  • 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


Download files

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

Source Distribution

moms_apriltag-2022.12.25.tar.gz (1.3 MB view hashes)

Uploaded Source

Built Distribution

moms_apriltag-2022.12.25-py3-none-any.whl (1.3 MB 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