supervision
A set of easy-to-use utils that will come in handy in any Computer Vision project
What it is and what it does
Supervision is a toolkit for building computer vision applications around detection, segmentation, and classification models. It abstracts away common tasks—loading datasets in multiple formats (YOLO, COCO, Pascal VOC), converting between them, splitting and merging datasets, and visualizing model outputs with customizable annotators. The package is model-agnostic and works with any framework; it includes connectors for popular libraries, but you can also pass detections directly if your model already returns the expected format.
The library handles the plumbing so you focus on application logic rather than format parsing or visualization boilerplate. It depends on standard scientific Python libraries (numpy, scipy, pillow, matplotlib) plus video support (av) and YAML parsing, making it straightforward to integrate into existing pipelines. The package is actively maintained, well-starred, and supports modern Python versions (3.10–3.14).
Use it for:
- Load and split YOLO or COCO datasets for training, validation, and testing without manual file parsing
- Annotate detection results with bounding boxes, masks, or labels for debugging model predictions
- Convert datasets between YOLO, COCO, and Pascal VOC formats for compatibility with different training frameworks
- Track objects across video frames and calculate metrics like dwell time or speed using zone-based analysis
- Merge multiple detection datasets with different class vocabularies into a unified training set
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Supervision provides utilities for loading, annotating, and processing computer vision datasets and model outputs—detection, segmentation, and classification results from any model framework.
Yes. Supervision is a mature, actively maintained toolkit with no known vulnerabilities, permissive licensing, and low install friction. It solves real friction points in computer vision workflows—dataset loading, format conversion, and visualization—and integrates cleanly with model frameworks. Install it if you work with detection, segmentation, or classification models and want to avoid reinventing dataset utilities.
Install
supervision on PyPI
pip
pip install supervisionuv
uv add supervisionpoetry
poetry add supervisionInstalling supervision
Before you install
Low install friction with a pure-Python wheel. Active maintenance (last commit 2026-08-14, released 2026-08-04) and a large community (49398 stars). Ten runtime dependencies are all well-established libraries.
License in practice
MIT license permits unrestricted use, modification, and distribution in commercial and private projects with minimal restrictions.
Quickstart
pip install supervision
import supervision as sv
from pillow import Image
image = Image.open("path/to/image.jpg")
detections = sv.Detections(...)
box_annotator = sv.BoxAnnotator()
annotated_frame = box_annotator.annotate(scene=image.copy(), detections=detections)
Requires Python >= 3.10
Verify before relying
- Whether the package works with models outside the listed connectors without custom adapter code
- Performance characteristics when handling large datasets or high-resolution video streams
- Whether all dataset format conversions preserve annotation fidelity across YOLO, Pascal VOC, and COCO
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 10 — av, defusedxml, matplotlib, numpy, pillow, pydeprecate, pyyaml, requests, scipy, tqdm |
| Maintenance | actively maintained — 10 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 1,387,355/month — #3,971 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: supervision-0.30.0-py3-none-any.whl
Keywords: AI, deep-learning, DL, machine-learning, ML, Roboflow, vision
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
roboflowRoboflow is a Python client for the Roboflow…
permissive · top 5,000 on PyPI
controlnet-auxProvides computer vision annotation and…
permissive · top 15,000 on PyPI
inference-modelsLoads and runs computer vision models from…
unclear · top 15,000 on PyPI
superviselyPython SDK for the Supervisely computer vision…
unclear · top 15,000 on PyPI
pycocotoolsProvides Python APIs for loading, parsing, and…
unclear · top 5,000 on PyPI
ultralyticsUltralytics YOLO provides a unified framework…
agpl · top 5,000 on PyPI
inference-cliA command-line tool for running computer vision…
permissive · top 15,000 on PyPI
rf100vlProvides programmatic access to RF100-VL, a…
permissive · top 15,000 on PyPI
icevisionIceVision provides a unified framework for…
permissive · top 15,000 on PyPI
tensorflow-datasetsProvides access to many public datasets as…
permissive · top 5,000 on PyPI