Commit 10a32cedbb4b82d093f1ac4fa2e87afc935ed1a6

Authored by Scott Klum
2 parents 559f1f80 d3c57ee4

Merge branch 'master' of https://github.com/biometrics/openbr

Showing 1 changed file with 1 additions and 1 deletions
openbr/core/common.cpp
... ... @@ -64,7 +64,7 @@ QList<int> Common::RandSample(int n, const QSet<int> &values, bool unique)
64 64 return samples;
65 65 }
66 66  
67   -QList<float> linspace(float start, float stop, int n) {
  67 +QList<float> Common::linspace(float start, float stop, int n) {
68 68 float delta = (stop - start) / (n - 1);
69 69 float curValue = start;
70 70 QList<float> spaced;
... ...