Expose and document NMS slider (#2028)

This commit is contained in:
Sam Freund
2025-08-08 15:05:54 -05:00
committed by GitHub
parent 0ea108e17f
commit 3ac509b40d
2 changed files with 12 additions and 1 deletions

View File

@@ -85,6 +85,17 @@ const selectedModel = computed({
(value) => useCameraSettingsStore().changeCurrentPipelineSetting({ confidence: value }, false)
"
/>
<pv-slider
v-model="currentPipelineSettings.nms"
class="pt-2"
:slider-cols="interactiveCols"
label="NMS Threshold"
tooltip="The Non-Maximum Suppression threshold used to filter out overlapping detections. Lower values mean more detections are allowed through, but may result in false positives."
:min="0"
:max="1"
:step="0.01"
@update:modelValue="(value) => useCameraSettingsStore().changeCurrentPipelineSetting({ nms: value }, false)"
/>
<pv-range-slider
v-model="contourArea"
label="Area"