Mean Average Precision (mAP) is a performance metric used for evaluating machine learning models. It is the most popular metric that is used by benchmark challenges such as PASCAL VOC, COCO, ImageNET ...
August 9, 2022
10 Comments
Intersection over Union (IoU) in Object Detection & Segmentation
June 28, 2022
3 Comments
Intersection Over Union (IoU) is a number that quantifies the degree of overlap between two boxes. In the case of object detection and segmentation, IoU evaluates the overlap of the Ground Truth and ...
Non Maximum Suppression: Theory and Implementation in PyTorch
June 2, 2021
22 Comments
Non Maximum Suppression (NMS) is a technique used in numerous computer vision tasks. It is a class of algorithms to select one entity (e.g., bounding boxes) out of many overlapping entities. We can ...