From 91a1f5e35deacc117e5b0a5e6c85f4d624ab96ad Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Mon, 9 Nov 2015 11:46:52 -0500 Subject: [PATCH] Fixed precision recall axis labels --- openbr/core/plot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/core/plot.cpp b/openbr/core/plot.cpp index bff51d1..889911e 100644 --- a/openbr/core/plot.cpp +++ b/openbr/core/plot.cpp @@ -277,7 +277,7 @@ bool PlotDetection(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 Accepts Per Image,yTitle=True Accept Rate,xLog=true,yLog=false]"))); - optMap.insert("prOptions", File(QString("[xTitle=False Accept Rate,yTitle=False Reject Rate,xLog=true,yLog=true]"))); + optMap.insert("prOptions", File(QString("[xTitle=Recall,yTitle=Precision,xLog=false,yLog=false]"))); foreach (const QString &key, optMap.keys()) { const QStringList options = destination.get(key, QStringList()); -- libgit2 0.21.4