Labelbox / pascal-voc-writer

A python library for generating annotations in the PASCAL VOC format.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PASCAL VOC Writer

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

Install

pip install -e git+https://github.com/Labelbox/pascal-voc-writer.git@master

Use

# Writer(path, width, height)

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

# ::addObject(name, xy_coords)

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

# ::save(path)

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

About

A python library for generating annotations in the PASCAL VOC format.

License:MIT License


Languages

Language:Python 100.0%