From 04e0d32ab1dede656371ff716188280ce85e06f9 Mon Sep 17 00:00:00 2001 From: Brendan Klare Date: Thu, 15 May 2014 13:21:47 -0400 Subject: [PATCH] Temporary attribute fix --- openbr/plugins/turk.cpp | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) diff --git a/openbr/plugins/turk.cpp b/openbr/plugins/turk.cpp index fa445de..fc3790e 100644 --- a/openbr/plugins/turk.cpp +++ b/openbr/plugins/turk.cpp @@ -105,6 +105,7 @@ class TurkClassifierTransform : public Transform void init() { QStringList classifiers; + isMeta = false; // Trying to satisfy a bug. This is not used anyways. foreach (const QString &value, values) classifiers.append(QString("(SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=%1,outputVariable=predicted_%1)%2)").arg(key + "_" + value, isMeta ? QString("+Average+SaveMat(predicted_%1)").arg(value) : QString())); child = Transform::make(classifiers.join("/") + (classifiers.size() > 1 ? "+Cat" : "")); -- libgit2 0.21.4