Metadata-Version: 2.1
Name: viewmask
Version: 0.3.1
Summary: A Python package and CLI to view XML annotations and NumPy masks.
Home-page: https://github.com/sumanthratna/viewmask
License: MIT
Author: sumanthratna
Author-email: sumanthratna@gmail.com
Requires-Python: >=3.7,<3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Pillow (>=8.0.0,<9.0.0)
Requires-Dist: click (>=8.0.1,<9.0.0)
Requires-Dist: dask-image (>=0.6.0,<0.7.0)
Requires-Dist: napari (>=0.4.2,<0.5.0)
Requires-Dist: numpy (>=1.18.4,<2.0.0)
Requires-Dist: opencv-python-headless (>=4.2.0,<5.0.0)
Requires-Dist: openslide-python (>=1.1.1,<2.0.0)
Requires-Dist: scikit-image (>=0.18.1,<0.19.0)
Requires-Dist: scipy (>=1.6.3,<2.0.0)
Project-URL: Documentation, https://viewmask.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/sumanthratna/viewmask
Description-Content-Type: text/x-rst

viewmask
========
A Python package and CLI to view XML annotations and NumPy masks.

|PyPI version fury.io|
|PyPI downloads|
|HitCount|
|Documentation Status|
|Travis build|
|PyPI license|

.. |PyPI version fury.io| image:: https://badge.fury.io/py/viewmask.svg
   :target: https://pypi.python.org/pypi/viewmask/

.. |PyPI downloads| image:: https://img.shields.io/pypi/dm/viewmask
   :target: https://pypistats.org/packages/viewmask

.. |HitCount| image:: https://hits.dwyl.com/sumanthratna/viewmask.svg
   :target: https://hits.dwyl.com/sumanthratna/viewmask

.. |Documentation Status| image:: https://readthedocs.org/projects/viewmask/badge/?version=latest
   :target: https://viewmask.readthedocs.io/?badge=latest

.. |Travis build| image:: https://travis-ci.com/sumanthratna/viewmask.svg?branch=master
   :target: https://travis-ci.com/sumanthratna/viewmask

.. |PyPI license| image:: https://img.shields.io/pypi/l/viewmask.svg
   :target: https://pypi.python.org/pypi/viewmask/
   
viewmask is meant to be a quick-and-easy tool for visualizing masks and a quick-and-easy library for working with annotations. For a more powerful library, consider `HistomicsTK <https://github.com/DigitalSlideArchive/HistomicsTK>`_ (see `annotations and masks <https://digitalslidearchive.github.io/HistomicsTK/histomicstk.annotations_and_masks.html>`_).

Installation
============

pip
------------
::

 python3 -m pip install --upgrade pip
 python3 -m pip install viewmask

or:
::

 python3 -m pip install --upgrade pip
 python3 -m pip install git+git://github.com/sumanthratna/viewmask.git#egg=viewmask

Poetry
------------
::

 poetry run python -m pip install --upgrade pip
 poetry add viewmask

or:
::

 poetry run python -m pip install --upgrade pip
 poetry add git+https://github.com/sumanthratna/viewmask.git

