Metadata-Version: 2.1
Name: pyclay-annotation-utils
Version: 0.3.1
Summary: Utilities that are used for assisting with making annotated data.
Home-page: https://github.com/cm107/annotation_utils
Author: Clayton Mork
Author-email: mork.clayton3@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: opencv-python (>=4.1.1.26)
Requires-Dist: numpy (>=1.17.2)
Requires-Dist: Shapely (>=1.6.4.post2)
Requires-Dist: matplotlib (>=3.1.1)
Requires-Dist: Pillow (>=6.1.0)
Requires-Dist: pycocotools (>=2.0.0)
Requires-Dist: pylint (>=2.4.2)
Requires-Dist: labelme (>=3.16.7)
Requires-Dist: PyYAML (>=5.1.2)
Requires-Dist: pyqt5 (>=5.14.1)
Requires-Dist: pyclay-common-utils (==0.1)
Requires-Dist: pyclay-logger (==0.2)

# annotation_utils
Utilities that are used for assisting with making annotated data.

## Installation
### Install From Github
```console
pip install https://github.com/cm107/annotation_utils/archive/master.zip
```

### Install From Pypi
```console
pip install pyclay-annotation_utils
```

Note: The github package is updated more often than the pypi package.

## Update Build
If you change the code and want to re-build the package, do the following.

```console
./build_package.sh
```

The package can then be installed locally.
```console
pip install -e .
```

## Important Note
* Outdated/obsolete code has been moved to the [annotation_utils/old](annotation_utils/old) folder as of version 0.2.
* The latest COCO utilities can be found under [annotation_utils/coco/refactored](annotation_utils/coco/refactored).
* The latest Labelme utilities can be found under [annotation_utils/labelme/refactored](annotation_utils/labelme/refactored).
* The latest dataset management utilities can be found under [annotation_utils/dataset/refactored](annotation_utils/dataset/refactored).

## Usage
There is not any official documentation about usage yet, but for usage examples you may refer to the [test folder](test).
* [COCO Utility Usage Examples](test/coco)
* [Labelme Utility Usage Examples](test/labelme)
* [Dataset Utility Usage Examples](test/dataset)

