Does the evaluateDetectionPrecision function use the 11-point method to calculate mAP?
Show older comments
Hi,
Pretty much the title.
Thanks in advance.
Accepted Answer
More Answers (1)
yanqi liu
on 5 Nov 2021
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 Comments
Pedro José Carrinho Ribeiro
on 9 Nov 2021
yanqi liu
on 10 Nov 2021
sir, i think numExpected is the ideal or expect number return, offen use in recall
Categories
Find more on Object Detection in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!