NmsSortByArea
Function Usage
Filters repeated objects based on the area size.
Prototype
void NmsSortByArea(std::vector<DetectBox>& detBoxes, const float iouThresh, const IOUMethod method = UNION);
void NmsSortByArea(std::vector<ObjectInfo>& detBoxes, const float iouThresh, const IOUMethod method = UNION);
Parameter Description
Parameter |
Input/Output |
Description |
|---|---|---|
detBoxes |
Input/Output |
DetectBox (central point)/ObjectInfo (corner point) to be filtered. The filtered object information is output. |
iouThresh |
Input |
Filtering threshold. |
method |
Input |
IOU is calculated as follows:
|
Parent topic: Nms