You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhiltsov-max 32254530cf [Datumaro] Fix voc colormap (#945)
* Add polygon merging option to coco converter

* Add test, refactor coco, add support for cli args

* Drop colormap application in datumaro format

* Add cli support in voc converter

* Add cli support in yolo converter

* Add converter cli options in project cli

* Add image data type conversion in image saving

* Add image data type conversion in image saving

* Update mask support in voc

* Replace null with quotes in coco export

* Improve cli

* Enable Datumaro intellisense in vs cde

* Adjust fields in voc detection export
6 years ago
..
datumaro [Datumaro] Fix voc colormap (#945) 6 years ago
docs Add dataset export facility (#813) 6 years ago
tests [Datumaro] Fix voc colormap (#945) 6 years ago
README.md Add dataset export facility (#813) 6 years ago
datum.py Add dataset export facility (#813) 6 years ago
requirements.txt [Datumaro] Added tf detection api tfrecord import and export (#894) 6 years ago
setup.py [Datumaro] Added tf detection api tfrecord import and export (#894) 6 years ago
test.py Add dataset export facility (#813) 6 years ago

README.md

Dataset framework

A framework to prepare, manage, build, analyze datasets

Documentation

-Quick start guide

Installation

Python3.5+ is required.

To install into a virtual environment do:

python -m pip install virtualenv
python -m virtualenv venv
. venv/bin/activate
pip install -r requirements.txt

Execution

The tool can be executed both as a script and as a module.

PYTHONPATH="..."
python -m datumaro <command>
python path/to/datum.py

Testing

python -m unittest discover -s tests