Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waikato-ufdl/wai-annotations-voc
wai.annotations module for dealing with Pascal VOC (visual object classes) datasets.
https://github.com/waikato-ufdl/wai-annotations-voc
Last synced: about 2 months ago
JSON representation
wai.annotations module for dealing with Pascal VOC (visual object classes) datasets.
- Host: GitHub
- URL: https://github.com/waikato-ufdl/wai-annotations-voc
- Owner: waikato-ufdl
- License: apache-2.0
- Created: 2021-06-21T23:00:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-01T03:09:12.000Z (11 months ago)
- Last Synced: 2024-11-07T07:07:55.610Z (2 months ago)
- Language: Python
- Homepage: https://ufdl.cms.waikato.ac.nz/wai-annotations-manual/
- Size: 17.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
# wai-annotations-voc
wai.annotations module for dealing with Pascal VOC (visual object classes) datasets.## Plugins
### FROM-VOC-OD
Reads image object-detection annotations in the Pascal VOC XML-formatThe manual is available here:
https://ufdl.cms.waikato.ac.nz/wai-annotations-manual/
#### Domain(s):
- **Image Object-Detection Domain**#### Options:
```
FROM-VOC-OD:
Reads image object-detection annotations in the Pascal VOC XML-formatDomain(s): Image Object-Detection Domain
usage: from-voc-od [-I FILENAME] [-i FILENAME] [-N FILENAME] [-n FILENAME] [-o FILENAME] [--seed SEED]
optional arguments:
-I FILENAME, --inputs-file FILENAME
Files containing lists of input files (can use glob syntax)
-i FILENAME, --input FILENAME
Input files (can use glob syntax)
-N FILENAME, --negatives-file FILENAME
Files containing lists of negative files (can use glob syntax)
-n FILENAME, --negative FILENAME
Files that have no annotations (can use glob syntax)
-o FILENAME, --output-file FILENAME
optional file to write read filenames into
--seed SEED the seed to use for randomisation
```### TO-VOC-OD
Writes image object-detection annotations in the Pascal VOC XML-format#### Domain(s):
- **Image Object-Detection Domain**### Options:
```
TO-VOC-OD:
Writes image object-detection annotations in the Pascal VOC XML-formatDomain(s): Image Object-Detection Domain
usage: to-voc-od [--annotations-only] -o PATH [--split-names SPLIT NAME [SPLIT NAME ...]] [--split-ratios RATIO [RATIO ...]]
optional arguments:
--annotations-only
skip the writing of data files, outputting only the annotation files
-o PATH, --output PATH
output directory to write annotations to (images are placed in same directory)
--split-names SPLIT NAME [SPLIT NAME ...]
the names to use for the splits
--split-ratios RATIO [RATIO ...]
the ratios to use for the splits
```