Skip to main content

A python package to generate AR markers and patterns based on input images

Project description

PyMarker

A python package to generate AR markers and patterns based on input images.

Installation

PyMarker is available through pip and Pypi.

python3 -m pip install pymarker --user
// or
pip3 install pymarker --user

Usage

Pymarker provides two features for a marker-based AR, generating Pattern files (.patt) and Markers (.png). The marker will be used by the user to visualize some augmented reality, the pattern file for the system to be able to recognize the marker.

An example input image: Example of an input image

Expected output patt: Example output for pattern file

Expected output marker: Example of a generated marker

Commands

By default pymarker receives an image and generate both patt and marker

$ pymarker tests/input/hiro.jpg

However, if needed the flag -p or --patt can gerate only the patt file for the input:

$ pymarker -p tests/input/hiro.jpg
// or
$ pymarker --patt tests/input/hiro.jpg

The same can happen for markers using the -m or --marker which generates only the marker:

$ pymarker -m tests/input/hiro.jpg
// or
$ pymarker --marker tests/input/hiro.jpg

The marker border size can be adjusted with -b, the default value being 50%.

$ pymarker -b 40 tests/input/hiro.jpg

Modules

You can use the functions directly from your python code to generate markers and patts.

from pymarker.core import generate_patt, generate_marker

def main():
    filename = "tests/input/hiro.jpg"
    border_size = 50 // size in percentage

    generate_patt(filename)
    generate_marker(filename,border_size)

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

pymarker-0.3.2.tar.gz (17.3 kB view hashes)

Uploaded Source

Built Distribution

pymarker-0.3.2-py3-none-any.whl (19.0 kB 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