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!