Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/reedkrawiec/dama
- Owner: ReedKrawiec
- License: gpl-3.0
- Created: 2022-02-23T06:41:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-03T17:18:55.000Z (over 2 years ago)
- Last Synced: 2024-11-06T08:12:28.044Z (3 months ago)
- Topics: json, pillow, python, yolo, yolov5
- Language: Python
- Homepage:
- Size: 27.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```