From 76ee05420d9cc0134af453173d18ea5810cd8915 Mon Sep 17 00:00:00 2001 From: rcvsq Date: Wed, 23 Jul 2025 14:58:09 +0000 Subject: [PATCH] exposing `box_iou_batch` in `supervision/detection/utils__init__.py` --- supervision/detection/utils/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/supervision/detection/utils/__init__.py b/supervision/detection/utils/__init__.py index e69de29b..c4b0f387 100644 --- a/supervision/detection/utils/__init__.py +++ b/supervision/detection/utils/__init__.py @@ -0,0 +1,3 @@ +from supervision.detection.utils.iou_and_nms import box_iou_batch + +__all__ = ["box_iou_batch"]