Metadata-Version: 2.1
Name: yolo-to-labelme
Version: 0.0.8
Summary: A python script for converting annotation format(yolo-txt to labelme-json)
Author-email: Adeel Waheed <itsadeelemail@gmail.com>
Project-URL: Homepage, https://github.com/adeel-maker/yolotolabelme
Project-URL: Bug Tracker, https://github.com/adeel-maker/yolotolabelme/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# yolo2labelme

A python script for converting annotation format(yolo-txt to labelme-json).

## Installation
```bash
pip install yolo-to-labelme
```
## Usage
Arguments:

`--yolo` : path to YOLO annotations directory.

`--labelme(optional)` : path to output directory.
 
`--width(optional)` : default value is 1024.

`--height(optional)` : default value is 1024.

`--classes` : Path to the classes file(TXT format).

`--img_ext(optional)` : Default extention is "jpg".

### CLI Usage:
Specify yolo-labels-directory, output directory(optional), classes file, image size(width, height)(optional), and image extention(optional).

```bash
yolotolabelme --yolo path/to/yoloAnnotations --labelme path/to/output --classes path/to/classes-file
```

## Useful links
Github code: https://github.com/adeel-maker/yolotolabelme/

Yolo to labelme: https://pypi.org/project/yolo-to-labelme/

Lableme to yolo : https://pypi.org/project/labelme2yolo/
