From d3c57ee49644d1a162db85e8ff5ac3ac7a95d251 Mon Sep 17 00:00:00 2001 From: Brendan Klare Date: Fri, 31 Jan 2014 21:01:41 -0500 Subject: [PATCH] Bug fix with linspace --- openbr/core/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/core/common.cpp b/openbr/core/common.cpp index 5f5043b..bfd38fb 100644 --- a/openbr/core/common.cpp +++ b/openbr/core/common.cpp @@ -64,7 +64,7 @@ QList Common::RandSample(int n, const QSet &values, bool unique) return samples; } -QList linspace(float start, float stop, int n) { +QList Common::linspace(float start, float stop, int n) { float delta = (stop - start) / (n - 1); float curValue = start; QList spaced; -- libgit2 0.21.4