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!