跳至内容

👋 你好

我们为您编写可复用的计算机视觉工具。无论您需要从硬盘加载数据集、在图像或视频上绘制检测框,还是统计区域内检测目标的数量,都可以信赖我们!

💻 安装

您可以在Python>=3.8环境中安装supervision

安装

version downloads license python-version

pip install supervision

version downloads license python-version

poetry add supervision

version downloads license python-version

uv pip install supervision

对于uv项目:

uv add supervision

version downloads license python-version

rye add supervision

conda/mamba 安装

conda-recipe conda-downloads conda-version conda-platforms

conda install -c conda-forge supervision

mamba-recipe mamba-downloads mamba-version mamba-platforms

mamba install -c conda-forge supervision

git clone (用于开发)

# clone repository and navigate to root directory
git clone --depth 1 -b develop https://github.com/roboflow/supervision.git
cd supervision

# setup python environment and activate it
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip

# installation
pip install -e "."
# clone repository and navigate to root directory
git clone --depth 1 -b develop https://github.com/roboflow/supervision.git
cd supervision

# setup python environment and activate it
uv venv
source .venv/bin/activate

# installation
uv pip install -r pyproject.toml -e . --all-extras

🚀 快速入门

  • 检测与标注


    为多种目标检测和分割模型的预测结果添加标注

    Tutorial

  • 追踪对象


    了解如何通过实现无缝对象跟踪来增强视频分析

    教程

  • 检测小物体


    学习如何在图像中检测小物体

    Tutorial

  • 统计穿越线条的物体数量


    探索准确计数和分析穿越预定义线条物体的方法

    Notebook

  • 区域内的对象筛选


    掌握在特定区域内选择性筛选和聚焦对象的技术

  • 速查表


    获取最常用supervision功能的快速参考指南

    Cheatsheet

评论