public void postprocessResults(Core.Evaluation.Results.Results results)
        {
            string summary = "";

            foreach (string method in results.Methods) {
                this.onProgressChanged(new ProgressReport("StatisticsSummary: " + method));
                Statistics s = new Statistics(method, results);
                summary += method + ";" + s.FAR.ToString() + ";" + s.FRR.ToString() + "\n";
            }

            File.WriteAllText(FileName, summary);
            this.onProgressChanged(new ProgressReport("StatisticsSummary: done"));
        }
Пример #2
0
 public Statistics createCopy()
 {
     Statistics s = new Statistics(this.method, this.results);
     s.underThreshAccepted = this.underThreshAccepted;
     s.thresh = this.thresh;
     return s;
 }