Commit 91a1f5e35deacc117e5b0a5e6c85f4d624ab96ad

Authored by Scott Klum
1 parent 6b46b321

Fixed precision recall axis labels

Showing 1 changed file with 1 additions and 1 deletions
openbr/core/plot.cpp
... ... @@ -277,7 +277,7 @@ bool PlotDetection(const QStringList &files, const File &destination, bool show)
277 277 // Use a br::file for simple storage of plot options
278 278 QMap<QString,File> optMap;
279 279 optMap.insert("rocOptions", File(QString("[xTitle=False Accepts Per Image,yTitle=True Accept Rate,xLog=true,yLog=false]")));
280   - optMap.insert("prOptions", File(QString("[xTitle=False Accept Rate,yTitle=False Reject Rate,xLog=true,yLog=true]")));
  280 + optMap.insert("prOptions", File(QString("[xTitle=Recall,yTitle=Precision,xLog=false,yLog=false]")));
281 281  
282 282 foreach (const QString &key, optMap.keys()) {
283 283 const QStringList options = destination.get<QStringList>(key, QStringList());
... ...