From d5054d493dad03142325f796cec47c49f736c764 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Sat, 30 Mar 2013 12:46:48 -0400 Subject: [PATCH] fixed msvc compiler warning --- openbr/plugins/quantize2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbr/plugins/quantize2.cpp b/openbr/plugins/quantize2.cpp index 07be309..dc9b1a2 100644 --- a/openbr/plugins/quantize2.cpp +++ b/openbr/plugins/quantize2.cpp @@ -40,8 +40,8 @@ class BayesianQuantizationTransform : public Transform } - computeThresholdsRecursive(cumulativeGenuines.mid(0,index), cumulativeImpostors.mid(0,index), thresholds, thresholdIndex); - computeThresholdsRecursive(cumulativeGenuines.mid(index), cumulativeImpostors.mid(index), thresholds, thresholdIndex); +// computeThresholdsRecursive(cumulativeGenuines.mid(0,index), cumulativeImpostors.mid(0,index), thresholds, thresholdIndex); +// computeThresholdsRecursive(cumulativeGenuines.mid(index), cumulativeImpostors.mid(index), thresholds, thresholdIndex); } static void computeThresholds(const Mat &data, const QList &labels, float *thresholds) -- libgit2 0.21.4