Metadata-Version: 2.1
Name: smqtk-image-io
Version: 0.16.1
Summary: SMQTK Image IO
License: BSD-3-Clause
Author: Kitware, Inc.
Author-email: smqtk-developers@kitware.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: numpy (>=1.19.5,<2.0.0)
Requires-Dist: pillow (>=8.2.0,<9.0.0)
Requires-Dist: smqtk-core (>=0.18.0)
Requires-Dist: smqtk-dataprovider (>=0.16.0)
Description-Content-Type: text/markdown

# SMQTK - Image-IO

## Intent
This package is intended to provide the interfaces and tools for working with image input.

Specifically, there are two readers used to interact with images. One uses GDAL and the other uses PIL

## Documentation

You can build the sphinx documentation locally for the most
up-to-date reference (see also: [Building the Documentation](
https://smqtk.readthedocs.io/en/latest/installation.html#building-the-documentation)):
```bash
# Install dependencies
poetry install
# Navigate to the documentation root.
cd docs
# Build the docs.
poetry run make html
# Open in your favorite browser!
firefox _build/html/index.html
```

