├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.md │ └── config.yml └── workflows │ ├── SyncToGitee.yml │ └── gen_whl_to_pypi.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── docs └── doc_whl.md ├── label_convert ├── __init__.py ├── coco_to_labelImg.py ├── darknet_to_coco.py ├── labelImg_to_publaynet.py ├── labelImg_to_yolov5.py ├── labelme_to_coco.py ├── vis_coco.py ├── yolov5_to_coco.py ├── yolov5_to_yolov8.py ├── yolov5_yaml_to_coco.py └── yolov8_to_yolov5.py ├── requirements.txt ├── setup.py └── tests ├── test_coco_to_labelImg.py ├── test_darknet_to_coco.py ├── test_files ├── COCO_dataset │ ├── annotations │ │ ├── instances_train2017.json │ │ └── instances_val2017.json │ ├── train2017 │ │ ├── 000000000001.jpg │ │ └── 000000000002.jpg │ └── val2017 │ │ └── 000000000001.jpg ├── darknet_dataset │ ├── class.names │ ├── gen_config.data │ ├── gen_train.txt │ ├── gen_valid.txt │ └── images │ │ ├── train │ │ ├── images(13).jpg │ │ └── images(13).txt │ │ └── valid │ │ ├── images(3).jpg │ │ └── images(3).txt ├── labelImg_dataset │ ├── classes.txt │ ├── images(13).jpg │ ├── images(13).txt │ ├── images(3).jpg │ ├── images(3).txt │ ├── images4.jpg │ ├── images4.txt │ ├── images5.jpg │ ├── images5.txt │ ├── images6.jpg │ ├── images7.jpg │ └── images7.txt ├── labelme_dataset │ ├── 4645_8.json │ ├── 4645_8.png │ ├── val_0001.jpg │ ├── val_0001.json │ ├── val_0002.jpg │ └── val_0002.json ├── publaynet_dataset │ ├── test.json │ ├── test │ │ ├── images5.jpg │ │ └── images5.txt │ ├── train.json │ ├── train │ │ ├── images(13).jpg │ │ ├── images(13).txt │ │ ├── images(3).jpg │ │ ├── images(3).txt │ │ ├── images4.jpg │ │ ├── images4.txt │ │ ├── images5.jpg │ │ ├── images5.txt │ │ ├── images7.jpg │ │ └── images7.txt │ ├── val.json │ └── val │ │ ├── images(13).jpg │ │ ├── images(13).txt │ │ ├── images5.jpg │ │ ├── images5.txt │ │ ├── images7.jpg │ │ └── images7.txt ├── yolov5_dataset │ ├── classes.txt │ ├── images │ │ ├── 0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg │ │ ├── 8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg │ │ ├── images(13).jpg │ │ └── images(3).jpg │ ├── labels │ │ ├── 0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt │ │ ├── 8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt │ │ ├── images(13).txt │ │ └── images(3).txt │ ├── non_labels │ │ └── bg1.jpeg │ ├── train.txt │ └── val.txt ├── yolov5_yaml_dataset │ ├── images │ │ ├── train │ │ │ ├── 0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg │ │ │ └── images(3).jpg │ │ └── val │ │ │ ├── 8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg │ │ │ └── images(13).jpg │ ├── labels │ │ ├── train │ │ │ ├── 0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt │ │ │ └── images(3).txt │ │ └── val │ │ │ ├── 8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt │ │ │ └── images(13).txt │ └── sample.yaml └── yolov8_dataset │ ├── images │ ├── train │ │ ├── 0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg │ │ └── images(3).jpg │ └── val │ │ ├── 8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg │ │ └── images(13).jpg │ └── labels │ ├── train │ ├── 0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt │ └── images(3).txt │ └── val │ ├── 8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt │ └── images(13).txt ├── test_labelImg_to_publaynet.py ├── test_labelImg_to_yolov5.py ├── test_labelme_to_coco.py ├── test_yolov5_to_coco.py ├── test_yolov5_to_yolov8.py ├── test_yolov5_yaml_to_coco.py └── test_yolov8_to_yolov5.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/SyncToGitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.github/workflows/SyncToGitee.yml -------------------------------------------------------------------------------- /.github/workflows/gen_whl_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.github/workflows/gen_whl_to_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/README.md -------------------------------------------------------------------------------- /docs/doc_whl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/docs/doc_whl.md -------------------------------------------------------------------------------- /label_convert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/__init__.py -------------------------------------------------------------------------------- /label_convert/coco_to_labelImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/coco_to_labelImg.py -------------------------------------------------------------------------------- /label_convert/darknet_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/darknet_to_coco.py -------------------------------------------------------------------------------- /label_convert/labelImg_to_publaynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/labelImg_to_publaynet.py -------------------------------------------------------------------------------- /label_convert/labelImg_to_yolov5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/labelImg_to_yolov5.py -------------------------------------------------------------------------------- /label_convert/labelme_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/labelme_to_coco.py -------------------------------------------------------------------------------- /label_convert/vis_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/vis_coco.py -------------------------------------------------------------------------------- /label_convert/yolov5_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/yolov5_to_coco.py -------------------------------------------------------------------------------- /label_convert/yolov5_to_yolov8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/yolov5_to_yolov8.py -------------------------------------------------------------------------------- /label_convert/yolov5_yaml_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/yolov5_yaml_to_coco.py -------------------------------------------------------------------------------- /label_convert/yolov8_to_yolov5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/label_convert/yolov8_to_yolov5.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv_python 2 | tqdm 3 | numpy 4 | PyYAML -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_coco_to_labelImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_coco_to_labelImg.py -------------------------------------------------------------------------------- /tests/test_darknet_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_darknet_to_coco.py -------------------------------------------------------------------------------- /tests/test_files/COCO_dataset/annotations/instances_train2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/COCO_dataset/annotations/instances_train2017.json -------------------------------------------------------------------------------- /tests/test_files/COCO_dataset/annotations/instances_val2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/COCO_dataset/annotations/instances_val2017.json -------------------------------------------------------------------------------- /tests/test_files/COCO_dataset/train2017/000000000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/COCO_dataset/train2017/000000000001.jpg -------------------------------------------------------------------------------- /tests/test_files/COCO_dataset/train2017/000000000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/COCO_dataset/train2017/000000000002.jpg -------------------------------------------------------------------------------- /tests/test_files/COCO_dataset/val2017/000000000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/COCO_dataset/val2017/000000000001.jpg -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/class.names: -------------------------------------------------------------------------------- 1 | stamp -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/gen_config.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/gen_config.data -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/gen_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/gen_train.txt -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/gen_valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/gen_valid.txt -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/images/train/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/images/train/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/images/train/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/images/train/images(13).txt -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/images/valid/images(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/images/valid/images(3).jpg -------------------------------------------------------------------------------- /tests/test_files/darknet_dataset/images/valid/images(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/darknet_dataset/images/valid/images(3).txt -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/classes.txt: -------------------------------------------------------------------------------- 1 | stamp -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images(13).txt -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images(3).jpg -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images(3).txt -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images4.jpg -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images4.txt -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images5.jpg -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images5.txt -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images6.jpg -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images7.jpg -------------------------------------------------------------------------------- /tests/test_files/labelImg_dataset/images7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelImg_dataset/images7.txt -------------------------------------------------------------------------------- /tests/test_files/labelme_dataset/4645_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelme_dataset/4645_8.json -------------------------------------------------------------------------------- /tests/test_files/labelme_dataset/4645_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelme_dataset/4645_8.png -------------------------------------------------------------------------------- /tests/test_files/labelme_dataset/val_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelme_dataset/val_0001.jpg -------------------------------------------------------------------------------- /tests/test_files/labelme_dataset/val_0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelme_dataset/val_0001.json -------------------------------------------------------------------------------- /tests/test_files/labelme_dataset/val_0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelme_dataset/val_0002.jpg -------------------------------------------------------------------------------- /tests/test_files/labelme_dataset/val_0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/labelme_dataset/val_0002.json -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/test.json -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/test/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/test/images5.jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/test/images5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/test/images5.txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train.json -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images(13).txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images(3).jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images(3).txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images4.jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images4.txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images5.jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images5.txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images7.jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/train/images7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/train/images7.txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val.json -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val/images(13).txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val/images5.jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val/images5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val/images5.txt -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val/images7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val/images7.jpg -------------------------------------------------------------------------------- /tests/test_files/publaynet_dataset/val/images7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/publaynet_dataset/val/images7.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/classes.txt: -------------------------------------------------------------------------------- 1 | stamp -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/images/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/images/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/images/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/images/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/images/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/images/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/images/images(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/images/images(3).jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/labels/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/labels/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/labels/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/labels/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/labels/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/labels/images(13).txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/labels/images(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/labels/images(3).txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/non_labels/bg1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/non_labels/bg1.jpeg -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/train.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_dataset/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_dataset/val.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/images/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/images/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/images/train/images(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/images/train/images(3).jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/images/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/images/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/images/val/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/images/val/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/labels/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/labels/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/labels/train/images(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/labels/train/images(3).txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/labels/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/labels/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/labels/val/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/labels/val/images(13).txt -------------------------------------------------------------------------------- /tests/test_files/yolov5_yaml_dataset/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov5_yaml_dataset/sample.yaml -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/images/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/images/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.jpg -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/images/train/images(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/images/train/images(3).jpg -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/images/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/images/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.jpg -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/images/val/images(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/images/val/images(13).jpg -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/labels/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/labels/train/0dcddf72-0cd7-4577-b59b-ed191863a13d_png.rf.7ed0e14fcc5dde85d883c6d41187908b.txt -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/labels/train/images(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/labels/train/images(3).txt -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/labels/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/labels/val/8ae4af51-4376-4d42-b6bd-54d17c8c5e02_png.rf.2db43284642a5e92dfe56830435549a1.txt -------------------------------------------------------------------------------- /tests/test_files/yolov8_dataset/labels/val/images(13).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_files/yolov8_dataset/labels/val/images(13).txt -------------------------------------------------------------------------------- /tests/test_labelImg_to_publaynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_labelImg_to_publaynet.py -------------------------------------------------------------------------------- /tests/test_labelImg_to_yolov5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_labelImg_to_yolov5.py -------------------------------------------------------------------------------- /tests/test_labelme_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_labelme_to_coco.py -------------------------------------------------------------------------------- /tests/test_yolov5_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_yolov5_to_coco.py -------------------------------------------------------------------------------- /tests/test_yolov5_to_yolov8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_yolov5_to_yolov8.py -------------------------------------------------------------------------------- /tests/test_yolov5_yaml_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_yolov5_yaml_to_coco.py -------------------------------------------------------------------------------- /tests/test_yolov8_to_yolov5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/LabelConvert/HEAD/tests/test_yolov8_to_yolov5.py --------------------------------------------------------------------------------