常用目标检测算法及各种评价指标

 

目标检测总结:R-CNN、Fast R-CNN、Faster R-CNN、YOLO、SSD:https://blog.csdn.net/qq_33244951/article/details/84673383

专有名词:https://wenku.baidu.com/view/84865f1a24c52cc58bd63186bceb19e8b9f6ec3e.html

IOU评价函数(intersection-over-union):https://www.julyedu.com/question/big/kp_id/26/ques_id/2138%EF%BC%89

IoU

intersect over union,中文:交并比。指目标预测框和真实框的交集和并集的比例。
 

mAP

mean average precision。是指每个类别的平均查准率的算术平均值。即先求出每个类别的平均查准率(AP),然后求这些类别的AP的算术平均值。

你可能感兴趣的:(目标检测)