Commit 0072004b9449a4f883914f75186859231c9b815a

Authored by bhklein
1 parent b827ec88

ROC and DET xLimits default to (10e-7,10e-1)

Showing 1 changed file with 2 additions and 2 deletions
openbr/core/plot.cpp
@@ -192,8 +192,8 @@ bool Plot(const QStringList &files, const File &destination, bool show) @@ -192,8 +192,8 @@ bool Plot(const QStringList &files, const File &destination, bool show)
192 192
193 // Use a br::file for simple storage of plot options 193 // Use a br::file for simple storage of plot options
194 QMap<QString,File> optMap; 194 QMap<QString,File> optMap;
195 - optMap.insert("rocOptions", File(QString("[xTitle=False Accept Rate,yTitle=True Accept Rate,xLog=true,yLog=false]")));  
196 - optMap.insert("detOptions", File(QString("[xTitle=False Accept Rate,yTitle=False Reject Rate,xLog=true,yLog=true]"))); 195 + optMap.insert("rocOptions", File(QString("[xTitle=False Accept Rate,yTitle=True Accept Rate,xLog=true,yLog=false,xLimits=(.0000001,.1)]")));
  196 + optMap.insert("detOptions", File(QString("[xTitle=False Accept Rate,yTitle=False Reject Rate,xLog=true,yLog=true,xLimits=(.0000001,.1)]")));
197 optMap.insert("ietOptions", File(QString("[xTitle=False Positive Identification Rate (FPIR),yTitle=False Negative Identification Rate (FNIR),xLog=true,yLog=true]"))); 197 optMap.insert("ietOptions", File(QString("[xTitle=False Positive Identification Rate (FPIR),yTitle=False Negative Identification Rate (FNIR),xLog=true,yLog=true]")));
198 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)]"))); 198 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)]")));
199 199