How Matlab measure accuracy, sensitivity and specificity in faster rcnn?

2 views (last 30 days)
Hi, I saw from the post using confusion matrix to measure accuracy, sensitivity and specificity. however, in faster rcnn, there are scores and w,h,x, and y, how am i going to measure these accuracy, sensitivity and specificity in faster rcnn? in detectorPrecisionRecall.m, there only have true positive and false positive, is it i need to remodify these code myself? Am i still need to use confusion matrix to do?

Accepted Answer

Shashank Gupta
Shashank Gupta on 13 Oct 2020
Check out evaluateDetectionPrecision. which is same as you mentioned about detectorPrecisionRecall. you must have seen that this function are widely used in the object detector examples, its because the output you get from these functions are "precision" and "recall", the two important performance metric which is nothing but sensitivity and Positive predictive value. You can use these metric to calculate almost all important performance criteria. Thus you may not need to use confusion matrix at all.
I hope this clear your confusion.
Cheers.

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!