Skip to main content

Python bindings for the Apriltags library

Project description

pyapriltags: Python bindings for the Apriltags library

These are Python bindings for the Apriltags 3 library developed by AprilRobotics. Inspired by the Apriltags2 bindings by Matt Zucker. Forked from dt-apriltags.

The original library is published with a BSD 2-Clause license.

Installation

The easy way

You can install using pip (or pip3 for Python 3):

pip install pyapriltags

And if you want a particular release, add it like this:

pip install pyapriltags@v3.3.0

Build it yourself

Clone this repository and navigate in it. Then initialize the Apriltags submodule:

$ git submodule init
$ git submodule update

Build the Apriltags C library and embed the newly-built library into the pip wheel.

$ make build

The new wheel will be available in the directory dist/. You can now install the wheel

pip install pyapriltags-VERSION-py3-none-ARCH.whl

NOTE: based on the current VERSION of this library and your OS, together with the architecture of your CPU ARCH, the filename above varies.

Release wheels

All the wheels built inside dist/ can be released (pushed to Pypi.org) by running the command

make upload

Release all

Use the following command to build and release wheels for Python 3 and CPU architecture amd64, aarch64 and arm32v7.

make release-all

Usage

Some examples of usage can be seen in the test.py file. The Detector class is a wrapper around the Apriltags functionality. You can initialize it as following:

at_detector = Detector(searchpath=['apriltags'],
                       families='tag36h11',
                       nthreads=1,
                       quad_decimate=1.0,
                       quad_sigma=0.0,
                       refine_edges=1,
                       decode_sharpening=0.25,
                       debug=0)

The options are:

Option Default Explanation
families 'tag36h11' Tag families, separated with a space
nthreads 1 Number of threads
quad_decimate 2.0 Detection of quads can be done on a lower-resolution image, improving speed at a cost of pose accuracy and a slight decrease in detection rate. Decoding the binary payload is still done at full resolution. Set this to 1.0 to use the full resolution.
quad_sigma 0.0 What Gaussian blur should be applied to the segmented image. Parameter is the standard deviation in pixels. Very noisy images benefit from non-zero values (e.g. 0.8)
refine_edges 1 When non-zero, the edges of the each quad are adjusted to "snap to" strong gradients nearby. This is useful when decimation is employed, as it can increase the quality of the initial quad estimate substantially. Generally recommended to be on (1). Very computationally inexpensive. Option is ignored if quad_decimate = 1
decode_sharpening 0.25 How much sharpening should be done to decoded images? This can help decode small tags but may or may not help in odd lighting conditions or low light conditions
searchpath ['apriltags'] Where to look for the Apriltag 3 library, must be a list
debug 0 If 1, will save debug images. Runs very slow

Detection of tags in images is done by running the detect method of the detector:

tags = at_detector.detect(img, estimate_tag_pose=False, camera_params=None, tag_size=None)

If you also want to extract the tag pose, estimate_tag_pose should be set to True and camera_params ([fx, fy, cx, cy]) and tag_size (in meters) should be supplied. The detect method returns a list of Detection objects each having the following attributes (note that the ones with an asterisks are computed only if estimate_tag_pose=True):

Attribute Explanation
tag_family The family of the tag.
tag_id The decoded ID of the tag.
hamming How many error bits were corrected? Note: accepting large numbers of corrected errors leads to greatly increased false positive rates. NOTE: As of this implementation, the detector cannot detect tags with a Hamming distance greater than 2.
decision_margin A measure of the quality of the binary decoding process: the average difference between the intensity of a data bit versus the decision threshold. Higher numbers roughly indicate better decodes. This is a reasonable measure of detection accuracy only for very small tags-- not effective for larger tags (where we could have sampled anywhere within a bit cell and still gotten a good detection.)
homography The 3x3 homography matrix describing the projection from an "ideal" tag (with corners at (-1,1), (1,1), (1,-1), and (-1, -1)) to pixels in the image.
center The center of the detection in image pixel coordinates.
corners The corners of the tag in image pixel coordinates. These always wrap counter-clock wise around the tag.
pose_R* Rotation matrix of the pose estimate.
pose_t* Translation of the pose estimate.
pose_err* Object-space error of the estimation.

Custom layouts

If you want to use a custom layout, you need to create the C source and header files for it and then build the library again. Then use the new libapriltag.so library. You can find more information on the original Apriltags repository.

Developer notes

The wheel is built inside a Docker container. The Dockerfile in the root of this repository is a template for the build environment. The build environment is based on ubuntu:latest and python3 is installed on the fly. The make build command will create the build environment if it does not exist before building the wheel.

Once the build environment (Docker image) is ready, a Docker container is launched with the following configuration:

  • the root of this repository mounted to /apriltag;
  • the directory dist/ is mounted as destination directory under /out;

The building script from assets/build.sh will be executed inside the container. The build steps are:

  • configure a cmake build in /builds/<arch> from the apriltag library from submodule apriltags/
  • run cmake build
  • copy so/.dylib/.dll library file to /dist/<arch> (inside the container)
  • repeat above steps for: win64, macos arm64, macos x86_64, linux x86_64, linux aarch64, linux armv7l
  • build python wheel (the .so library is embedded as package_data)
  • copy wheel file to /out (will pop up in dist/ outside the container)

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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

pyapriltags-3.3.0.post1-py3-none-win_amd64.whl (1.4 MB view details)

Uploaded Python 3 Windows x86-64

pyapriltags-3.3.0.post1-py3-none-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded Python 3 manylinux: glibc 2.12+ x86-64

pyapriltags-3.3.0.post1-py3-none-macosx_11_0_x86_64.whl (1.2 MB view details)

Uploaded Python 3 macOS 11.0+ x86-64

pyapriltags-3.3.0.post1-py3-none-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded Python 3 macOS 11.0+ ARM64

File details

Details for the file pyapriltags-3.3.0.post1-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyapriltags-3.3.0.post1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 313bcf9bd133b54bce55a4a613814e09f20450b68c0777fe16a4357b851a4979
MD5 5c262d292ae607066ba603c193565797
BLAKE2b-256 f683633e319f9e04c5418a0e2973aaefc6f33980f26d2c869900149fea880ee7

See more details on using hashes here.

Provenance

File details

Details for the file pyapriltags-3.3.0.post1-py3-none-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyapriltags-3.3.0.post1-py3-none-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18bc2060e7baf2696d135b49fdc406ecc82730463eca845f81da40e10a63aecc
MD5 ea4902f0ba6bccff57eec761310fd8d1
BLAKE2b-256 c99b26bc717249c60787e04d1c2553886f73d86f6cc4491140ded16b6e4924b0

See more details on using hashes here.

Provenance

File details

Details for the file pyapriltags-3.3.0.post1-py3-none-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyapriltags-3.3.0.post1-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7a43b8ccc7f90196ebd1e4103b74a4f725d903f7ebea1059f701c1446df10d7
MD5 aeea6d4069597962f883897ec11b966e
BLAKE2b-256 2c7fa5d00ba1807eac95e97a8f5e306f8c958e13fe0060b0adb7201cb2c403ef

See more details on using hashes here.

Provenance

File details

Details for the file pyapriltags-3.3.0.post1-py3-none-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyapriltags-3.3.0.post1-py3-none-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 98ced9d09faa9f3b810eb9560b58191cbd448d4624b877efa05e90f6e5fa1f2e
MD5 22cf2d7a6586032661c8d41c072d69b0
BLAKE2b-256 043750f2a4e66e8e2eec352e01ed6dd57a9391c2bc77cdfc767bf462a16724b6

See more details on using hashes here.

Provenance

File details

Details for the file pyapriltags-3.3.0.post1-py3-none-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyapriltags-3.3.0.post1-py3-none-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 232b1e33fe82f55ba094af9e7b91012e13d0029deac55d4a43a4183e8fe79b6c
MD5 9b5f41d6175b415bd8c6616e2ee5ce55
BLAKE2b-256 56b2500aa8dd5fad370dc63d3441a3e7c2317727bafcbdc2e4404f333a32b359

See more details on using hashes here.

Provenance

File details

Details for the file pyapriltags-3.3.0.post1-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyapriltags-3.3.0.post1-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 729371450f6a17db5263256c462d760600f5662f40f4504125e006c4e856f0fd
MD5 162f817986cffa1539c283071008d6ff
BLAKE2b-256 a3d6ae78c5d1c3b5ceabbdfdf0fa06b17d7c7510e3356fea7aeac5a1ceb6552a

See more details on using hashes here.

Provenance

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