update: docs

This commit is contained in:
soumik12345 2025-07-15 14:17:41 +05:30
parent 7849831e12
commit 3fed5f9a25
2 changed files with 12 additions and 2 deletions

View File

@ -10,6 +10,12 @@ comments: true
:::supervision.detection.overlap_filter.OverlapFilter
<div class="md-typeset">
<h2><a href="#supervision.detection.overlap_filter.OverlapMetric">OverlapMetric</a></h2>
</div>
:::supervision.detection.overlap_filter.OverlapMetric
<div class="md-typeset">
<h2><a href="#supervision.detection.overlap_filter.box_non_max_suppression">box_non_max_suppression</a></h2>
</div>

View File

@ -413,8 +413,12 @@ class OverlapMetric(Enum):
Enum specifying the metric for measuring overlap between detections.
Attributes:
IOU: Intersection over Union.
IOS: Intersection over Similarity.
IOU: Intersection over Union. A region-overlap metric that compares
two shapes (usually bounding boxes or masks) by normalising the
shared area with the area of their union.
IOS: Intersection over Smaller, a region-overlap metric that compares
two shapes (usually bounding boxes or masks) by normalising the
shared area with the smaller of the two shapes.
"""
IOU = "IOU"