From 0072004b9449a4f883914f75186859231c9b815a Mon Sep 17 00:00:00 2001 From: bhklein Date: Tue, 6 Feb 2018 14:41:56 -0700 Subject: [PATCH] ROC and DET xLimits default to (10e-7,10e-1) --- openbr/core/plot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbr/core/plot.cpp b/openbr/core/plot.cpp index ef56e14..a798b35 100644 --- a/openbr/core/plot.cpp +++ b/openbr/core/plot.cpp @@ -192,8 +192,8 @@ bool Plot(const QStringList &files, const File &destination, bool show) // Use a br::file for simple storage of plot options QMap optMap; - optMap.insert("rocOptions", File(QString("[xTitle=False Accept Rate,yTitle=True Accept Rate,xLog=true,yLog=false]"))); - optMap.insert("detOptions", File(QString("[xTitle=False Accept Rate,yTitle=False Reject Rate,xLog=true,yLog=true]"))); + optMap.insert("rocOptions", File(QString("[xTitle=False Accept Rate,yTitle=True Accept Rate,xLog=true,yLog=false,xLimits=(.0000001,.1)]"))); + optMap.insert("detOptions", File(QString("[xTitle=False Accept Rate,yTitle=False Reject Rate,xLog=true,yLog=true,xLimits=(.0000001,.1)]"))); optMap.insert("ietOptions", File(QString("[xTitle=False Positive Identification Rate (FPIR),yTitle=False Negative Identification Rate (FNIR),xLog=true,yLog=true]"))); optMap.insert("cmcOptions", File(QString("[xTitle=Rank,yTitle=Retrieval Rate,xLog=true,yLog=false,size=1,xLabels=(1,5,10,50,100),xBreaks=(1,5,10,50,100)]"))); -- libgit2 0.21.4