Does the evaluateDetectionPrecision function use the 11-point method to calculate mAP?
Mostrar comentarios más antiguos
Hi,
Pretty much the title.
Thanks in advance.
Respuesta aceptada
Más respuestas (1)
yanqi liu
el 5 de Nov. de 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 comentarios
Pedro José Carrinho Ribeiro
el 9 de Nov. de 2021
yanqi liu
el 10 de Nov. de 2021
sir, i think numExpected is the ideal or expect number return, offen use in recall
Categorías
Más información sobre Object Detection en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!