Beispiel #1
0
            public void computeData(EvaluatorsDETGraph graph)
            {
                double totalGenuine  = stats.GenuinesCount;
                double totalImpostor = stats.ImpostorsCount;

                for (int i = 0; i < STEP; i++)
                {
                    stats.Thresh       = threshes[i];
                    FalseRejection[i]  = stats.FalseRejection / totalGenuine;
                    FalseAcceptance[i] = stats.FalseAcceptance / totalImpostor;
                }
                graph.reportTick();
            }
            public void computeData(EvaluatorsDETGraph graph)
            {
                double totalGenuine = stats.GenuinesCount;
                double totalImpostor = stats.ImpostorsCount;
                for (int i = 0; i < STEP; i++) {
                    stats.Thresh = threshes[i];
                    FalseRejection[i] = stats.FalseRejection / totalGenuine;
                    FalseAcceptance[i] = stats.FalseAcceptance / totalImpostor;

                }
                graph.reportTick();
            }