Metadata-Version: 2.1
Name: smqtk-detection
Version: 0.20.1
Summary: Algorithms, data structures and utilities around performing detection of inputs
Home-page: https://github.com/Kitware/SMQTK-Detection
License: BSD-3-Clause
Author: Kitware, Inc.
Author-email: smqtk-developers@kitware.com
Requires-Python: >=3.8,<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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: centernet
Provides-Extra: torch
Requires-Dist: numba (>=0.56.4) ; extra == "centernet"
Requires-Dist: opencv-python (>=4.5.2.0) ; extra == "centernet"
Requires-Dist: smqtk-classifier (>=0.19.0)
Requires-Dist: smqtk-core (>=0.18.0)
Requires-Dist: smqtk-dataprovider (>=0.16.0)
Requires-Dist: smqtk-image-io (>=0.16.2) ; python_version < "3.11"
Requires-Dist: smqtk-image-io (>=0.17.0) ; python_version >= "3.11"
Requires-Dist: torch (>=1.10.0,!=2.0.1) ; extra == "torch" or extra == "centernet"
Requires-Dist: torchvision (>=0.11.1) ; extra == "torch"
Project-URL: Documentation, https://smqtk-detection.readthedocs.io/
Project-URL: Repository, https://github.com/Kitware/SMQTK-Detection
Description-Content-Type: text/markdown

# SMQTK - Detection

## Intent
This package provides interfaces and support for black-box object detection.

## Documentation
Documentation is [hosted on ReadTheDocs.io here](
https://smqtk-detection.readthedocs.io/en/stable/).

You can build the sphinx documentation locally for the most up-to-date
reference:
```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
```

