Confusion Matrix
:IoU(Intersectino over Union)
:Precision
:Recall
:Confidence Score는 Object detection마다 차이가 있지만,
보편적으로 찾은 bounding box 안에 object가 있을 확률을 의미.
단순하게 물체가 있을 확률로 계산되기도 하고,
물체가 있을 확률 IoU로 계산되기도 하고,
정확히 어떤 물체의 Class일 확률 IoU가 되고도 함.
PR Curve
:
object detection algorithm 성능을 평가하는 방법 중 하나로,
confidence score에 대한 threshold값의 변화에 따라 precision과 recall값들도 달라지는데,
이것을 그래프로 나타낸 것이 PR curve이다.
(confidence score threshold가 0.4라면, confidence score로 0.4 미만을 갖는 detection은 무시된다.)
(출처 : https://ctkim.tistory.com/entry/mAPMean-Average-Precision-%EC%A0%95%EB%A6%AC)
아래 예제에서 15개의 번호판이 존재하는 image에서 총 10개의 image가 detection되었다고 가정하고,
PR Curve
이다.Average Precision (AP)
:mean Average Precision(mAP)
: