From fc4de4b32f2207cb3d36fe67ff499d11177b48c9 Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Wed, 1 Oct 2014 15:57:34 -0400 Subject: [PATCH] Removed isMeta being set in init --- openbr/plugins/turk.cpp | 1 - 1 file changed, 0 insertions(+), 1 deletion(-) diff --git a/openbr/plugins/turk.cpp b/openbr/plugins/turk.cpp index e5865b1..9bf8008 100644 --- a/openbr/plugins/turk.cpp +++ b/openbr/plugins/turk.cpp @@ -105,7 +105,6 @@ 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