From 3ac509b40d1c0f39e4e9470bf0faa1ac21d1dbc7 Mon Sep 17 00:00:00 2001 From: Sam Freund Date: Fri, 8 Aug 2025 15:05:54 -0500 Subject: [PATCH] Expose and document NMS slider (#2028) --- .../docs/objectDetection/about-object-detection.md | 2 +- .../components/dashboard/tabs/ObjectDetectionTab.vue | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/source/docs/objectDetection/about-object-detection.md b/docs/source/docs/objectDetection/about-object-detection.md index 5bba0a592..bc3510c1c 100644 --- a/docs/source/docs/objectDetection/about-object-detection.md +++ b/docs/source/docs/objectDetection/about-object-detection.md @@ -18,7 +18,7 @@ This model output means that while its fairly easy to say that "this rectangle p ## Tuning and Filtering -Compared to other pipelines, object detection exposes very few tuning handles. The Confidence slider changes the minimum confidence that the model needs to have in a given detection to consider it valid, as a number between 0 and 1 (with 0 meaning completely uncertain and 1 meaning maximally certain). +Compared to other pipelines, object detection exposes very few tuning handles. The Confidence slider changes the minimum confidence that the model needs to have in a given detection to consider it valid, as a number between 0 and 1 (with 0 meaning completely uncertain and 1 meaning maximally certain). The Non-Maximum Suppresion (NMS) Threshold slider is used to filter out overlapping detections. Lower values mean more detections are allowed through, but may result in false positives. It's generally recommended that teams leave this set at the default, unless they find they're unable to get usable results with solely the Confidence slider. ```{raw} html