├── .github └── workflows │ └── format.yml ├── .gitignore ├── LICENSE ├── README.md ├── general_json2yolo.py ├── labelbox_json2yolo.py ├── requirements.txt └── utils.py /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/README.md -------------------------------------------------------------------------------- /general_json2yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/general_json2yolo.py -------------------------------------------------------------------------------- /labelbox_json2yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/labelbox_json2yolo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralytics/JSON2YOLO/HEAD/utils.py --------------------------------------------------------------------------------