Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About Histogram Plot of False Positive Scores #22

Closed
H19012 opened this issue Apr 15, 2020 · 4 comments
Closed

About Histogram Plot of False Positive Scores #22

H19012 opened this issue Apr 15, 2020 · 4 comments

Comments

@H19012
Copy link

H19012 commented Apr 15, 2020

In histogram plot of false positive scores along with different percentile, we can see that for lower percentile false positives scores are high. In the generated text file for each percentile there are a score and number of detection. i.e. Percentiles of the scores of all Detections:

  • 20th perc. score:[0.004]; num. dts:[1802]
  • 40th perc. score:[0.154]; num. dts:[3603]
  • 60th perc. score:[0.378]; num. dts:[5404]
  • 80th perc. score:[0.554]; num. dts:[7205]

Here in X-axis mean percentile, so why in X-axis values are not evenly distributed?
What does the Y-axis value mean? And how do you get the value?

@matteorr
Copy link
Owner

Would you mind providing a few more details? What code did you run, what file did you get the percentiles form? Please be more specific so I can help you better, and so whoever reads this issue can understand better what you are referring to. Thanks!

@H19012
Copy link
Author

H19012 commented Apr 16, 2020

Would you mind providing a few more details? What code did you run, what file did you get the percentiles form? Please be more specific so I can help you better, and so whoever reads this issue can understand better what you are referring to. Thanks!

After looking at your supplementary PDF(http://www.vision.caltech.edu/~mronchi/papers/ICCV17_PoseErrorDiagnosis_SUPP.pdf page 7), specifically the "Background False Negatives Analysis" figures, my confusion went away. Thank you for your reply.

@H19012 H19012 closed this as completed Apr 16, 2020
@H19012
Copy link
Author

H19012 commented Apr 24, 2020

Sorry to bother again, but just to make sure here is my question:-
Annotation 2020-04-24 112543
Annotation 2020-04-24 112616

What does the height of these bins signify? And also for the blue graph, is the right most bin same as summation of Background FP or not( if the threshold is set so that only FPs in the 80th percentile are considered FP)?

@H19012 H19012 reopened this Apr 24, 2020
@matteorr
Copy link
Owner

The first plot is the histogram of the confidence scores for false positive detections. The analysis code looks at all the scores of the provided detections and then plots the histogram of scores only for the false positives.

A high score false positive is problematic, as it means that your algorithm is making a bad prediction with high confidence. In that histogram you can see how many false positives you have for the 20th, 40th, 60th and 80th percentile of all detection scores. Note that you could change the percentiles to be whichever ones you prefer in backgroundFalsePosErrors.py.

The second plot is a histogram of area sizes for false positive or false negative detections (can't tell which from the snapshot since the analysis code creates an histogram for both). This is meant to show you what area sizes do you typically have for false positive or false negatives. For instance, if you have many small false positives it could suggest that your algorithm is detecting a lot of small people that are not truly people.

Hopefully this cleared your doubts, feel free to re-open if you still have questions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants