Metadata-Version: 2.0
Name: pascal-voc-writer
Version: 0.1.4
Summary: Create image annotation XML files in the PASCAL VOC format
Home-page: https://github.com/AndrewCarterUK/pascal-voc-writer
Author: Andrew Carter
Author-email: andrewcarter1992@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Keywords: pascal voc annotation writer xml
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: jinja2

PASCAL VOC Writer
=================

This library can be used to create image annotation XML files in the PASCAL VOC
file format.

Install
-------

``pip install pascal-voc-writer``

Use
---

    # Writer(path, width, height)

    writer = Writer('path/to/img.jpg', 800, 400)


    # ::addObject(name, xmin, ymin, xmax, ymax)

    writer.addObject('cat', 100, 100, 200, 200)


    # ::save(path)

    writer.save('path/to/img.xml')


