Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9230213
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:46:06+00:00 2026-06-18T05:46:06+00:00

How to plot a graph for false positives per window vs miss rate (or

  • 0

How to plot a graph for false positives per window vs miss rate (or probability of false alarm) and ROC (receiver operating curve) for an object detection application using video?How to determine the number of false positives and hits?An example will be very useful.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:46:08+00:00Added an answer on June 18, 2026 at 5:46 am

    Its pretty simple. Store all your true positive (H0) values in one array and all your true negatives (H1) values in another.

    Sort both lists.

    Find the highest value from both lists and the lowest value from both lists. Divide the range by an appropriate number (e.g 1000), this will be your step.

    Now step from minimum to maximum by the step value.

    For each evaluation value find the point in the h0 and h1 array that is greater than that value. Divide this index by the number of values in the h0/h1 array and multiply by 100 (giving you a percentage).

    • False rejection (fr) = h0 index percentage.
    • False acceptance (fa) = 100 – (h1 index percentage).

    Plot fa against, 100 – fr.

    To calculate the EER you need to find the minimum distance between the fr and fa calculated above.

    float diff = fabsf( fr - fa );
    if ( diff < minDiff )
    {
        minDiff = diff;
        minFr   = fr;
        minFa   = fa;
    }
    

    And then at the end the EER is calculated as follows:

    float eer = (minFr + minFa) / 2.0f;
    

    Edit: The values you get for H0 and H1 are simply score values indicating the “likelihood” that your match is correct. You must calculate these numbers somewhere as you must make a decision on whether you recognise your object or not based on this score.

    The H0 list is the scores you get when you have definite matches. The H1 list is the scores you get when you have definite non-matches.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The height of my Core Plot graph is significantly shorter than the height of
I'm using Core Plot to display a scatter plot graph, and I'd like to
It is very straight-forward to plot a tree using igraph in R library(igraph) plot(graph.tree(20,
With this approach. I have a line plot graph. I want to plot 'two'
I'm having data as like below. I need to plot graph based on region.
I am trying to plot a graph using gnuplot. I have six text files.
I would like to perform a measurement and plot a graph while the measurement
I need to read some data from an input file and plot a graph
I have the data in two files. I want to plot a graph the
I've currently got prefuse to plot a scatter graph, where the X axis is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.