Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 23, 2025

Bumps supervision from 0.26.0rc7 to 0.26.1rc0.

Release notes

Sourced from supervision's releases.

supervision-0.26.0

[!WARNING]
supervision-0.26.0 drops python3.8 support and upgrade all codes to python3.9 syntax style.

[!TIP] Our docs page now has a fresh look that is consistent with the documentations of all Roboflow open-source projects. (#1858)

🚀 Added

  • Added support for creating sv.KeyPoints objects from ViTPose and ViTPose++ inference results via sv.KeyPoints.from_transformers. (#1788)

    vitpose-plus-large.mp4
  • Added support for the IOS (Intersection over Smallest) overlap metric that measures how much of the smaller object is covered by the larger one in sv.Detections.with_nms, sv.Detections.with_nmm, sv.box_iou_batch, and sv.mask_iou_batch. (#1774)

    import numpy as np
    import supervision as sv
    boxes_true = np.array([
    [100, 100, 200, 200],
    [300, 300, 400, 400]
    ])
    boxes_detection = np.array([
    [150, 150, 250, 250],
    [320, 320, 420, 420]
    ])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOU
    )
    array([[0.14285714, 0.        ],
    [0.        , 0.47058824]])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOS
    )
    array([[0.25, 0.  ],
    [0.  , 0.64]])

  • Added sv.box_iou that efficiently computes the Intersection over Union (IoU) between two individual bounding boxes. (#1874)

  • Added support for frame limitations and progress bar in sv.process_video. (#1816)

... (truncated)

Changelog

Sourced from supervision's changelog.

Changelog

0.26.0 Jul 16, 2025

!!! failure "Removed" supervision-0.26.0 drops python3.8 support and upgrade all codes to python3.9 syntax style.

!!! info "Tip" Supervision’s documentation theme now has a fresh look that is consistent with the documentations of all Roboflow open-source projects. (#1858)

  • Added #1774: Support for the IOS (Intersection over Smallest) overlap metric that measures how much of the smaller object is covered by the larger one in sv.Detections.with_nms, sv.Detections.with_nmm, sv.box_iou_batch, and sv.mask_iou_batch.

    import numpy as np
    import supervision as sv
    boxes_true = np.array([
    [100, 100, 200, 200],
    [300, 300, 400, 400]
    ])
    boxes_detection = np.array([
    [150, 150, 250, 250],
    [320, 320, 420, 420]
    ])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOU
    )
    array([[0.14285714, 0.        ],
    [0.        , 0.47058824]])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOS
    )
    array([[0.25, 0.  ],
    [0.  , 0.64]])

  • Added #1874: sv.box_iou that efficiently computes the Intersection over Union (IoU) between two individual bounding boxes.

  • Added #1816: Support for frame limitations and progress bar in sv.process_video.

  • Added #1788: Support for creating sv.KeyPoints objects from ViTPose and ViTPose++ inference results via sv.KeyPoints.from_transformers.

... (truncated)

Commits
  • e8cb962 bump version from 0.26.1 to 0.26.1rc0
  • baa0402 Merge pull request #1901 from roboflow/fix/inference-overlap-metric-fix
  • c54d16c fix(pre_commit): 🎨 auto format pre-commit hooks
  • 1adb755 bump version from 0.26.0 to 0.26.1; improve docstrings; unify naming; imp...
  • db51a9f fix(pre_commit): 🎨 auto format pre-commit hooks
  • f044398 fix: 🐞 update inference_slicer.py for improved detection handling
  • 1c8ec0a Merge pull request #1898 from roboflow/fix/negative-mAP-values
  • 118e3a4 fix: line length
  • a139fb0 fix(pre_commit): 🎨 auto format pre-commit hooks
  • afdbb0a fix: keep it DRY
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [supervision](https://github.com/roboflow/supervision) from 0.26.0rc7 to 0.26.1rc0.
- [Release notes](https://github.com/roboflow/supervision/releases)
- [Changelog](https://github.com/roboflow/supervision/blob/develop/docs/changelog.md)
- [Commits](roboflow/supervision@0.26.0rc7...0.26.1rc0)

---
updated-dependencies:
- dependency-name: supervision
  dependency-version: 0.26.1rc0
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 23, 2025
@dependabot dependabot bot requested a review from soumik12345 as a code owner July 23, 2025 02:43
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 23, 2025
@dependabot dependabot bot requested review from SkalskiP and onuralpszr as code owners July 23, 2025 02:43
@dependabot dependabot bot added the python:uv Pull requests that update python:uv code label Jul 23, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 24, 2025

Superseded by #121.

@dependabot dependabot bot closed this Jul 24, 2025
@dependabot dependabot bot deleted the dependabot/uv/main/supervision-0.26.1rc0 branch July 24, 2025 02:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants