Skip to main content

A powerful command-line tool to generate customizable, print-ready PDF sheets of ArUco markers.

Project description

ArucoSheet

A powerful command-line tool to generate highly customizable, print-ready PDF sheets of ArUco markers for computer vision applications.

Features

  • Custom Marker Size: Specify the exact side length of the markers in millimeters.
  • Flexible Layouts: Define a precise grid (e.g., 4 rows, 3 columns) for your markers.
  • Auto-Fit Mode: Automatically calculate the maximum number of markers that can fit on a standard A4 page.
  • Sequential ID Generation: Simply provide a starting ID, and the tool will generate all subsequent markers needed to fill the grid.
  • Optional ID Labels: Choose whether to display a clear "ID: X" label beneath each marker for easy identification.
  • High-Quality PDF Output: Generates a 300 DPI PDF, perfect for crisp, accurate printing.
usage: ArucoSheet.py [-h] -s SIZE (-g ROWS COLS | -a) [--start-id START_ID] [--hide-id]

Generates a print-ready PDF sheet of ArUco markers.

optional arguments:
  -h, --help            show this help message and exit
  -s SIZE, --size SIZE  The side length of each marker in millimeters (mm).
  -g ROWS COLS, --grid ROWS COLS
                        Specify the exact grid layout (e.g., 3 2 for 3 rows and 2 columns).
  -a, --auto-fit        Automatically calculate the maximum number of markers that can fit on the page.
  --start-id START_ID   The ID of the first marker in the sequence. Default: 0.
  --hide-id             If set, the ID label below each marker will not be shown.

Installation

There are two ways to install ArucoSheet: via PyPI (recommended for most users) or from source (for developers).

1. Recommended: Install via PyPI

This is the simplest and recommended method. It will automatically download the tool and install all required dependencies.

Prerequisites:

  • Python 3.7+
  • pip (Python's package installer)

Open your terminal and run the following command:

pip install ArucoSheet

This will make the arucosheet command available system-wide in your terminal.

To verify the installation, run the help command. This should display the tool's help menu with all available options:

arucosheet --help

2. Alternative: Install from Source (for Developers)

If you want to contribute to the project, modify the code, or install the very latest (unreleased) version, you can install it directly from the source code.

Prerequisites:

  • Python 3.7+
  • pip
  • git

Follow these steps in your terminal:

# 1. Clone the repository from GitHub
git clone https://github.com/your-username/ArucoSheet.git

# 2. Navigate into the project directory
cd ArucoSheet

# 3. (Optional but recommended) Create and activate a virtual environment
python -m venv venv
# On Windows:
# .\venv\Scripts\activate
# On macOS/Linux:
# source venv/bin/activate

# 4. Install the package in editable mode
pip install -e .

The -e flag stands for "editable". This is ideal for development, as any changes you make to the source code will be immediately reflected when you run the arucosheet command.

Usage

Once installed, the arucosheet command becomes available in your terminal. All functionality is controlled via command-line arguments.

The tool operates in one of two layout modes, and you must choose one:

  • --auto-fit: Let the tool calculate the maximum number of markers that can fit on the page.
  • --grid: Manually specify the exact number of rows and columns for the layout.

The generated PDF file will be saved in your current working directory.


Example 1: The Easiest Way to Get Markers

Goal: Generate a PDF with as many 80mm markers as can fit on an A4 page.

This is the simplest and most common use case. The tool will calculate the optimal grid, start from ID 0, and include ID labels by default.

arucosheet --size 80 --auto-fit

This will generate a file like ArucoSheet_3x2_80mm_ID.pdf.

Example 2: Auto-Fit with a Specific Starting ID

Goal: Generate a sheet of 80mm markers for a project that requires specific IDs (e.g., for motion capture), starting from ID 10.

arucosheet --size 80 --auto-fit --start-id 10

The markers on the generated PDF will be numbered 10, 11, 12, and so on.

Example 3: Creating a Precise Grid

Goal: Generate a PDF with a specific 3x2 grid of smaller, 50mm markers.

Use the --grid flag when you need an exact number of markers, regardless of whether more could fit.

arucosheet --size 50 --grid 3 2

This will create a sheet with exactly 6 markers (3 rows, 2 columns), generating a file named ArucoSheet_3x2_50mm_ID.pdf.

Example 4: A Denser Layout Without ID Labels

Goal: Maximize the number of 60mm markers on a page by removing the space-consuming ID labels.

The --hide-id flag is useful when you can identify markers by their pattern alone and want to fit more on a single sheet.

arucosheet --size 60 --auto-fit --hide-id

This will likely fit more markers vertically compared to the version with labels and generate a file like ArucoSheet_4x3_60mm_noID.pdf.

Example 5: Getting Help

Goal: See all available commands and options directly from the terminal.

The --help flag is your built-in guide to all the tool's capabilities.

arucosheet --help

This will display the following helpful message:

usage: arucosheet [-h] -s SIZE (-g ROWS COLS | -a) [--start-id START_ID] [--hide-id]

Generates a print-ready PDF sheet of ArUco markers.

optional arguments:
  -h, --help            show this help message and exit
  -s SIZE, --size SIZE  The side length of each marker in millimeters (mm).
  -g ROWS COLS, --grid ROWS COLS
                        Specify the exact grid layout (e.g., 3 2 for 3 rows and 2 columns).
  -a, --auto-fit        Automatically calculate the maximum number of markers that can fit on the page.
  --start-id START_ID   The ID of the first marker in the sequence. Default: 0.
  --hide-id             If set, the ID label below each marker will not be shown.```

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

arucosheet-1.0.2.tar.gz (44.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arucosheet-1.0.2-py3-none-any.whl (31.1 kB view details)

Uploaded Python 3

File details

Details for the file arucosheet-1.0.2.tar.gz.

File metadata

  • Download URL: arucosheet-1.0.2.tar.gz
  • Upload date:
  • Size: 44.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for arucosheet-1.0.2.tar.gz
Algorithm Hash digest
SHA256 5cb151784f6020d637d78047e3c27b75c5a7bef431cb709b1454c912f65d03ca
MD5 8277796a6bd8d1e39b3f17ff4a38221b
BLAKE2b-256 e42c68f3a73072fd691011623c3807e9cbb42f97adedb7a32355f7803fd2ece1

See more details on using hashes here.

File details

Details for the file arucosheet-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: arucosheet-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for arucosheet-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1951ef240c9e3ecbba7a88df53e157989672e6ec4f2ef1bd4f68e38bb7e3f9a3
MD5 4f80d1746e6867bceea1104708b9f06d
BLAKE2b-256 d3b09dd51983b731c67c486100525cda2c4746c8a55ed9fc18ca8ab7f5301fe1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page