some tools about pascal voc format dataset
Project description
Pascal VOC Tools
This package includes some tools about pascal voc format dataset like read xml, write xml, resize image.
XmlReader
from pascal_voc_tools import XmlReader
>>> xml_path = './test.xml'
>>> reader = XmlReader(xml_path)
>>> ann_dict = reader.load()
som functions for reading a xml file and geting data in it.
XmlWriter
from pascal_voc_tools import XmlWriter
>>> writer = XmlWriter(image_path, image_width, image_height, image_depth, database, segmented)
>>> writer.add_object(name, xmin, ymin, xmax, ymax, pose, truncated, difficult)
>>> writer.save(save_path)
Actually, if you have a dict have the format same as loaded dict from XmlReader, you can simply used like:
>>> writer = XmlWriter()
>>> writer.save(save_path, ann_dict)
DatasetResize
from pascal_voc_tools import DatasetResize
>>> resizer = DatasetResize(root_voc_dir, save_voc_dir)
>>> resizer.resize_dataset_by_min_size(min_size)
>>> resizer.copy_imagesets() # if the file include
DataSplit
from pascal_voc_tools import DataSplit
>>> spliter = DataSplit(root_dir)
>>> result = spliter.split_by_rate(test_rate)
>>> spliter.save(result)
add Augmenter from https://github.com/Paperspace/DataAugmentationForObjectDetection
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pascal_voc_tools-0.1.19.tar.gz.
File metadata
- Download URL: pascal_voc_tools-0.1.19.tar.gz
- Upload date:
- Size: 97.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1771a6506944b2c77a6936745583c3b8d7826eecfdec7b7407c949bcdd79c520
|
|
| MD5 |
66c3a19c64157773fd343e85bd124af7
|
|
| BLAKE2b-256 |
3eba554f3e7d180ffe933cd35cc136bafdb20d40d70b303e4e049033caac042a
|
File details
Details for the file pascal_voc_tools-0.1.19-py3-none-any.whl.
File metadata
- Download URL: pascal_voc_tools-0.1.19-py3-none-any.whl
- Upload date:
- Size: 111.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1548661e85b65d36c18151248514eb841360688af07260c1e853cbab8c800054
|
|
| MD5 |
1599bdd04e1502c24eb3c09431349050
|
|
| BLAKE2b-256 |
59ffa8badc97336dc77afd4664c31ee6daef6609357c00d1053f673f3ca66660
|