public class NonMaxSuppression
Standard post-processing step for object detection pipelines that removes redundant detections while preserving the most confident predictions.
目标检测管线的标准后处理步骤,可去除冗余检测同时保留最有把握的预测结果。
NonMaxSuppression | 初始化 NonMaxSuppression 类的一个新实例 |
CalculateIntersectionOverUnion | Calculates Intersection-over-Union metric for two bounding boxes 计算两个边界框的交并比(IoU) |
Equals | Determines whether the specified object is equal to the current object. (继承自 Object。) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (继承自 Object。) |
GetHashCode | Serves as the default hash function. (继承自 Object。) |
GetType | Gets the Type of the current instance. (继承自 Object。) |
MemberwiseClone | Creates a shallow copy of the current Object. (继承自 Object。) |
Run(BoundingBox, Single) | Applies NMS to an array of candidate bounding boxes 对候选边界框数组应用NMS |
Run(ListBoundingBox, Single) | Core NMS implementation that processes a list of bounding boxes 处理边界框列表的核心NMS实现 |
ToString | Returns a string that represents the current object. (继承自 Object。) |