Does the evaluateDetectionPrecision function use the 11-point method to calculate mAP?
显示 更早的评论
采纳的回答
更多回答(1 个)
yanqi liu
2021-11-5
sir,its compute rule as follows
precision = tp ./ (tp + fp);
recall = tp ./ numExpected;
% Change in recall for every true positive.
deltaRecall = 1/numExpected;
ap = sum( precision .* (labels>0) ) * deltaRecall;
2 个评论
Pedro José Carrinho Ribeiro
2021-11-9
yanqi liu
2021-11-10
sir, i think numExpected is the ideal or expect number return, offen use in recall
类别
在 帮助中心 和 File Exchange 中查找有关 Object Detection 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!