roboflow/supervision
原文摘要
We write your reusable computer vision tools. 💜 notebooks | inference | autodistill | maestro 👋 hello We are your essential toolkit for computer vision. From data loading to real-time zone counting, we provide the building blocks so you can focus on building applications around your models. 🤝 💻 install Pip install the supervision package in a Python>=3.9 environment. pip install supervision Read more about conda, mamba, and installing from source in our guide . 🔥 quickstart models Supervision was designed to be model agnostic. Just plug in any classification, detection, or segmentation model. For your convenience, we have created connectors for the most popular libraries like Ultralytics, Transformers, MMDetection, or Inference. Other integrations, like rfdetr , already return sv.Detections directly. Install the optional dependencies for this example with pip install pillow rfdetr . import supervision as sv from PIL import Image from rfdetr import RFDETRSmall image = Image.open(...) model = RFDETRSmall() detections = model.predict(image, threshold=0.5) len(detections) # 5 👉 more model connectors inference Running with Inference requires a Roboflow API KEY . import supervision…
📋 本文为 GitHub Trending Daily RSS 的 RSS 摘要原文,未经 AI 整理。完整上下文请以 原文 为准。