Metadata-Version: 2.1
Name: pymarker
Version: 0.0.2
Summary: A python package to generate AR markers and patterns based on input images
Home-page: https://github.com/pablodiegoss/pymarker
Author: Pablo Silva
Author-email: pablodiegoss@hotmail.com
License: UNKNOWN
Description: # PyMarker
        A python package to generate AR markers and patterns based on input images.
        
        ## Usage
        
        Pymarker has 2 main features, 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](images/hiro.jpg)
        
        Expected output patt:    
        ![Example output for pattern file](images/patt_example.png)
        
        Expected output marker:    
        ![Example of a generated marker](images/marker_example.png)
        
        ### Commands
        
        By default pymarker receives an image and generate both patt and marker
        ```bash
        $ pymarker tests/input/hiro.jpg
        ```   
        
        However, if needed the flag `-p` or `--patt` can gerate only the patt file for the input:
        
        ```bash
        $ 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:
        
        ```bash
        $ 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 84px.
        ```bash
        $ pymarker -b 40 tests/input/hiro.jpg
        ```
        
Keywords: AR pattern markers jandig hiro
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
