Does the evaluateDetectionPrecision function use the 11-point method to calculate mAP?
Ältere Kommentare anzeigen
Hi,
Pretty much the title.
Thanks in advance.
Akzeptierte Antwort
Weitere Antworten (1)
yanqi liu
am 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 Kommentare
Pedro José Carrinho Ribeiro
am 9 Nov. 2021
yanqi liu
am 10 Nov. 2021
sir, i think numExpected is the ideal or expect number return, offen use in recall
Kategorien
Mehr zu Object Detection finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!