The universal annotation converter
Project description
Panlabel
The universal annotation converter
If you've ever written a one-off Python script to wrangle COCO annotations into YOLO format (or vice versa), panlabel is here to save you the trouble. It's a fast, single-binary CLI that converts between common object detection annotation formats — with built-in validation, clear lossiness warnings, and no Python dependencies to manage.
Panlabel’s current core scope is mainstream/static-image 2D axis-aligned object-detection bbox conversion. It does not provide first-class segmentation, keypoints/pose, oriented boxes, video tracking IDs, or 3D/multisensor labels. When broad schemas include richer structures, panlabel either skips/reports those structures or treats the conversion as lossy.
Panlabel is also available as a Rust library if you want to integrate format conversion into your own tools.
Note: Panlabel is in active development (v0.5.x). The CLI and library APIs may change between versions, so pin to a specific version if you're using it in production.
Installation
pip / uv (any platform)
pip install panlabel
# or
uv pip install panlabel
This installs a pre-built binary — no Rust toolchain needed.
Homebrew (macOS / Linux)
brew install strickvl/tap/panlabel
Shell script (macOS / Linux)
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/strickvl/panlabel/releases/latest/download/panlabel-installer.sh | sh
PowerShell (Windows)
powershell -ExecutionPolicy Bypass -c "irm https://github.com/strickvl/panlabel/releases/latest/download/panlabel-installer.ps1 | iex"
Cargo (from source)
cargo install panlabel
# Enable full HF support (remote Hub import + metadata.parquet)
cargo install panlabel --features hf
Pre-built binaries
Download from the latest GitHub Release. Builds are available for macOS (Intel + Apple Silicon), Linux (x86_64 + ARM64), and Windows.
Docker
docker pull strickvl/panlabel
# Convert a COCO file in your current directory to YOLO
docker run --rm -v "$PWD":/data strickvl/panlabel convert -f coco -t yolo -i /data/annotations.json -o /data/yolo_out --allow-lossy
Multi-arch images (amd64 + arm64) are published for each release.
As a Rust library
cargo add panlabel
Quick start
# Convert between formats (auto-detects the input)
panlabel convert --from auto --to yolo -i annotations.json -o ./yolo_out --allow-lossy
# Check a dataset for problems before training
panlabel validate --format coco annotations.json
# Get a quick overview of what's in a dataset
panlabel stats --format coco annotations.json
# Compare two datasets semantically
panlabel diff --format-a auto --format-b auto old.json new.json
# Sample a smaller subset for quick experiments
panlabel sample -i annotations.json -o sample.ir.json --from auto --to ir-json -n 100 --seed 42
# See every supported format and its capabilities
panlabel list-formats
The convert shape is always -f <source> -t <dest> -i <input> -o <output> — pick any source/destination from the Supported formats table. See More convert examples below for lossless vs. lossy conversions, machine-readable JSON reports, dry runs, and remote Hugging Face datasets.
What can panlabel do?
| Command | What it does |
|---|---|
convert |
Convert between annotation formats, with clear warnings about what (if anything) gets lost |
validate |
Check your dataset for common problems — duplicate IDs, missing references, invalid bounding boxes |
stats |
Show rich dataset statistics in text, JSON, or HTML |
diff |
Compare two datasets semantically (summary or detailed output) |
sample |
Create subset datasets (random or stratified), with optional category filtering and JSON reports |
list-formats |
Show which formats are supported and their read/write/lossiness capabilities, including JSON discovery output |
Supported formats
| Format | Extension / Layout | Description | Lossiness |
|---|---|---|---|
ir-json |
.json |
Panlabel's own intermediate representation | Lossless |
coco |
.json |
COCO object detection format | Conditional |
ibm-cloud-annotations |
_annotations.json file or directory |
IBM Cloud Annotations localization JSON | Lossy |
cvat |
.xml / annotations.xml export |
CVAT for images XML annotation export | Lossy |
label-studio |
.json |
Label Studio task export JSON (rectanglelabels) |
Lossy |
labelbox |
.json / .jsonl / .ndjson |
Labelbox current export rows (data_row / projects.*.labels) |
Lossy |
scale-ai |
.json file or directory (annotations/) |
Scale AI image annotation task/response JSON | Lossy |
unity-perception |
.json file or SOLO-like directory |
Unity Perception / SOLO synthetic-data bbox JSON | Lossy |
tfod |
.csv |
TensorFlow Object Detection CSV (normalized bbox corners) | Lossy |
tfrecord |
.tfrecord |
TensorFlow Object Detection API-style tf.train.Example records (single-file, uncompressed, bbox-only in v1) |
Lossy |
vott-csv |
.csv |
Microsoft VoTT CSV export (image,xmin,ymin,xmax,ymax,label) |
Lossy |
vott-json |
.json file or vott-json-export/ directory |
Microsoft VoTT JSON export (assets / per-asset JSON with regions) |
Lossy |
yolo |
images/ + labels/ directory, or split data.yaml pointing to image-list .txt files |
YOLO .txt labels (flat, split-aware, Scaled-YOLOv4 aliases, optional confidence) |
Lossy |
yolo-keras |
.txt file or directory (yolo_keras.txt, annotations.txt, train.txt) |
YOLO Keras absolute-coordinate TXT (image xmin,ymin,xmax,ymax,class_id ...) |
Lossy |
yolov4-pytorch |
.txt file or directory (yolov4_pytorch.txt, train_annotation.txt, train.txt) |
YOLOv4 PyTorch absolute-coordinate TXT (image xmin,ymin,xmax,ymax,class_id ...) |
Lossy |
voc |
Annotations/ + JPEGImages/ directory |
Pascal VOC XML | Lossy |
hf |
metadata.jsonl / metadata.parquet directory |
Hugging Face ImageFolder metadata | Lossy |
sagemaker |
.manifest / .jsonl file |
AWS SageMaker Ground Truth object-detection manifest | Lossy |
labelme |
.json file or annotations/ directory |
LabelMe per-image JSON annotations | Lossy |
create-ml |
.json |
Apple CreateML annotation format | Lossy |
kitti |
label_2/ + image_2/ directory |
KITTI object detection labels | Lossy |
via |
.json |
VGG Image Annotator (VIA) JSON | Lossy |
retinanet |
.csv |
keras-retinanet CSV format | Lossy |
openimages |
.csv |
Google OpenImages CSV annotation format | Lossy |
kaggle-wheat |
.csv |
Kaggle Global Wheat Detection CSV | Lossy |
automl-vision |
.csv |
Google Cloud AutoML Vision CSV | Lossy |
udacity |
.csv |
Udacity Self-Driving Car Dataset CSV | Lossy |
superannotate |
.json file or annotations/ directory |
SuperAnnotate JSON export | Lossy |
supervisely |
.json file or ann/ / meta.json project directory |
Supervisely JSON project / dataset | Lossy |
cityscapes |
.json, gtFine/, or dataset root with gtFine/ |
Cityscapes polygon JSON; polygons become bbox envelopes | Lossy |
marmot |
.xml file or directory with same-stem companion images |
Marmot XML document-layout composites; hex doubles become pixel bboxes | Lossy |
datumaro |
.json |
Datumaro JSON annotation format | Lossy |
wider-face |
.txt |
WIDER Face aggregate TXT (single face class in panlabel) |
Lossy |
oidv4 |
directory with Label/ or .txt |
OIDv4 Toolkit TXT labels (directory probe uses Label/, not YOLO labels/) |
Lossy |
bdd100k |
.json |
BDD100K / Scalabel JSON detection subset | Lossy |
v7-darwin |
.json |
V7 Darwin JSON bbox subset | Lossy |
edge-impulse |
bounding_boxes.labels file or containing directory |
Edge Impulse bounding-box labels JSON | Lossy |
openlabel |
.json |
ASAM OpenLABEL JSON static-image 2D bbox subset | Lossy |
via-csv |
.csv |
VGG Image Annotator CSV (separate format from VIA JSON) | Lossy |
Run panlabel list-formats for the full details, or panlabel list-formats --output json for machine-readable format discovery.
TFRecord support in v1 is intentionally narrow: panlabel currently supports only single-file, uncompressed TensorFlow Object Detection API-style tf.train.Example bbox records (not arbitrary TFRecord payloads).
list-formats shows canonical names (for example label-studio), while commands also accept aliases (for example ls, label-studio-json). Across commands, --output-format is the consistent way to request JSON reports; convert and sample also keep --report as an alias. JSON is pretty-printed on a terminal and compact when piped or captured, which makes it friendlier for scripts and agents. stats also adapts its text renderer: rich/Unicode on a terminal, plain text layout when piped.
More convert examples
# COCO to IR JSON (lossless — no data lost)
panlabel convert -f coco -t ir-json -i input.json -o output.json
# IR JSON to TFOD (lossy — requires explicit opt-in)
panlabel convert -f ir-json -t tfod -i input.json -o output.csv --allow-lossy
# Auto-detect input format from file extension/content or directory layout
panlabel convert --from auto -t coco -i input.csv -o output.json
# Request a machine-readable conversion report
panlabel convert --from auto -t coco -i input.csv -o output.json --output-format json
# Preview a conversion without touching the output path
panlabel convert --from auto -t coco -i input.csv -o output.json --dry-run
# Convert a remote Hugging Face dataset repo to COCO JSON
# (requires --features hf when building from source)
panlabel convert -f hf -t coco --hf-repo rishitdagli/cppe-5 --split train -o coco_output.json
# Convert a zip-style HF dataset repo split to IR JSON (auto-detects extracted payload)
panlabel convert -f hf -t ir-json --hf-repo keremberke/football-object-detection --split train -o football.ir.json
Dry runs still do the real thinking work — format detection, validation, sampling/conversion analysis, and lossiness checks — but they skip the final filesystem write. That means they are good for “what would happen?” checks, but they do not prove that the output path is writable.
Getting help
panlabel --help # See all commands
panlabel convert --help # Help for a specific command
panlabel -V # Show version
Documentation
Want to go deeper? The full docs are readable right here on GitHub:
- Documentation home — start here
- CLI reference — every flag and option
- Format reference — how each format works
- Tasks and use cases — what's supported today
- Conversion and lossiness — understanding what gets lost
- Contributing — we'd love your help
- Roadmap — what's coming next
Contributing
Contributions are welcome! Whether it's a bug report, a new format adapter, or a documentation fix — we appreciate the help. For major changes, please open an issue first so we can discuss the approach.
See the contributing guide for details on the codebase structure and how to make changes.
License
MIT — see LICENSE for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file panlabel-0.7.0.tar.gz.
File metadata
- Download URL: panlabel-0.7.0.tar.gz
- Upload date:
- Size: 478.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62b6f211bd969a718f9b45d5af8479695b2f8a9ecad41562cbad6a6abbada5ab
|
|
| MD5 |
c4e58648988d91d7415cc7cabe204029
|
|
| BLAKE2b-256 |
e7e2f7cfdc1f9fc1be3ef9e57710003b0bbf9529d969b55e38c3ef362cf6c145
|
File details
Details for the file panlabel-0.7.0-py3-none-win_amd64.whl.
File metadata
- Download URL: panlabel-0.7.0-py3-none-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75c9d72df79b2fec7437a2081256b89bfa33830fed51d55b9576f9dcf2930e4f
|
|
| MD5 |
4b51c6f96cc3de039ffe7727dfeeb26c
|
|
| BLAKE2b-256 |
e936e85061ca82afc7993cf6def3242cf4ffaf6b58c62c600c6a6e6759b4c321
|
File details
Details for the file panlabel-0.7.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: panlabel-0.7.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb302d5016417182a358aaba39f6858c2996ec8525c8d0d810836a0da2bf0bb3
|
|
| MD5 |
1830a761846ae49b7c6d816ddf695d31
|
|
| BLAKE2b-256 |
001cd97c63bef0ff25a77c8e6b6733d92fb782d955430a3d00a7de29f7d5cc1a
|
File details
Details for the file panlabel-0.7.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: panlabel-0.7.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4fd2cef03f01b75e0338dbabe6aca2bb0da7e2352b0f54e815d69862b1cf358
|
|
| MD5 |
a6a4b9df86a43a39b8dbbbc0f463e696
|
|
| BLAKE2b-256 |
60387b710c9ff54c614c00db30afbd8e6262f480b67429ead71f42ffcd233a21
|
File details
Details for the file panlabel-0.7.0-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: panlabel-0.7.0-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9acdd7cbeda2426d126205eaef960baac8e6a77224c3bec303b64a3b9b5e9975
|
|
| MD5 |
2efe1817fb934a96bb9756e8daf2c3c1
|
|
| BLAKE2b-256 |
c248ec370923ec9006476d33c20c2c2d2a2acff190a4252cb137f44d237cb9e2
|
File details
Details for the file panlabel-0.7.0-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: panlabel-0.7.0-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bddeff4153e3b0dbfa2cb523e3397c7aaf2d4a9a441b14e15137da277c409cc5
|
|
| MD5 |
227a642fc818601b699f3ec2a0064c30
|
|
| BLAKE2b-256 |
f731809abfded1a4cef301782a9881c68b9c8350d454d6b424367f56d3d80517
|