Does the evaluateDetectionPrecision function use the 11-point method to calculate mAP?
Mostra commenti meno recenti
Hi,
Pretty much the title.
Thanks in advance.
Risposta accettata
Più risposte (1)
yanqi liu
il 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 Commenti
Pedro José Carrinho Ribeiro
il 9 Nov 2021
yanqi liu
il 10 Nov 2021
sir, i think numExpected is the ideal or expect number return, offen use in recall
Categorie
Scopri di più su Object Detection in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!