Lines Matching refs:iouThreshold
359 uint32_t* hardNmsSingleClass(const float* scoresData, float iouThreshold, int32_t maxNumDetections, in hardNmsSingleClass() argument
377 if (iou >= iouThreshold) { in hardNmsSingleClass()
388 float scoreThreshold, float iouThreshold, int32_t maxNumDetections, in hardNmsMultiClass() argument
404 uint32_t* selectEnd = hardNmsSingleClass(scoresData, iouThreshold, maxNumDetectionsPerClass, in hardNmsMultiClass()
489 int32_t softNmsKernel, float iouThreshold, float sigma, in boxWithNmsLimitFloat32Compute() argument
495 kernel = [&iouThreshold](float iou) { return iou < iouThreshold ? 1.0f : 0.0f; }; in boxWithNmsLimitFloat32Compute()
497 kernel = [&iouThreshold](float iou) { return iou < iouThreshold ? 1.0f : 1.0f - iou; }; in boxWithNmsLimitFloat32Compute()
620 int32_t maxNumDetections, int32_t softNmsKernel, float iouThreshold, in boxWithNmsLimitFloat32() argument
633 scoreThreshold, maxNumDetections, softNmsKernel, iouThreshold, sigma, nmsScoreThreshold, in boxWithNmsLimitFloat32()
643 int32_t softNmsKernel, _Float16 iouThreshold, _Float16 sigma, in boxWithNmsLimitFloat16() argument
656 batchesShape, scoreThreshold, maxNumDetections, softNmsKernel, iouThreshold, sigma, in boxWithNmsLimitFloat16()
666 float iouThreshold, float sigma, float nmsScoreThreshold, in boxWithNmsLimitQuant() argument
678 batchesShape, scoreThreshold, maxNumDetections, softNmsKernel, iouThreshold, sigma, in boxWithNmsLimitQuant()
688 float iouThreshold, float sigma, float nmsScoreThreshold, in boxWithNmsLimitQuant() argument
701 batchesShape, scoreThreshold, maxNumDetections, softNmsKernel, iouThreshold, sigma, in boxWithNmsLimitQuant()
957 int32_t postNmsTopN, float iouThreshold, float minSize, in generateProposalsNhwcFloat32Compute() argument
1032 scoresBase, iouThreshold, postNmsTopN, in generateProposalsNhwcFloat32Compute()
1059 int32_t postNmsTopN, float iouThreshold, float minSize, in generateProposalsFloat32Compute() argument
1069 heightStride, widthStride, preNmsTopN, postNmsTopN, iouThreshold, minSize, in generateProposalsFloat32Compute()
1078 int32_t postNmsTopN, float iouThreshold, float minSize, bool useNchw, in generateProposalsFloat32() argument
1085 iouThreshold, minSize, useNchw, &scoresOut_float32, &roiOut_float32, &batchesOut)); in generateProposalsFloat32()
1121 int32_t postNmsTopN, float iouThreshold, float minSize, bool useNchw, in generateProposalsFloat16() argument
1136 heightStride, widthStride, preNmsTopN, postNmsTopN, iouThreshold, minSize, useNchw, in generateProposalsFloat16()
1170 int32_t postNmsTopN, float iouThreshold, float minSize, bool useNchw, in generateProposalsQuant() argument
1188 heightStride, widthStride, preNmsTopN, postNmsTopN, iouThreshold, minSize, useNchw, in generateProposalsQuant()
1444 int32_t maxClassesPerDetection, int32_t maxNumDetectionsPerClass, float iouThreshold, in detectionPostprocessFloat32() argument
1485 scoreBase, numClasses, numAnchors, scoreThreshold, iouThreshold, in detectionPostprocessFloat32()
1513 maxScores.data(), iouThreshold, maxNumDetections, in detectionPostprocessFloat32()
1549 int32_t maxClassesPerDetection, int32_t maxNumDetectionsPerClass, float iouThreshold, in detectionPostprocessFloat16() argument
1564 maxNumDetections, maxClassesPerDetection, maxNumDetectionsPerClass, iouThreshold, in detectionPostprocessFloat16()