Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/reedkrawiec/dama

Generate data for YOLO using JSON definitions and python
https://github.com/reedkrawiec/dama

json pillow python yolo yolov5

Last synced: about 1 month ago
JSON representation

Generate data for YOLO using JSON definitions and python

Awesome Lists containing this project

README

        



# About

DaMa is a tool to help you generate data for your computer vision projects.

Create a "provider" that generates Pillow images and annotations. These
annotations are in the format of (class_index,x,y,width,height) with x and y being
in the center. Class index is the index of the correct label within dama.json. Look at
the provider folder, it contains an example provider. Look at dama.json for all configuration.

To Execute
```
python3 dama.py
```
To Execute with labels highlighted with a box
```
python3 dama.py --draw-labels
```