Mercurial > hg > match-vamp
diff src/MatchFeatureFeeder.h @ 183:24ddab06aace re-minimise
Toward allowing types to be small again. Doesn't currently build
author | Chris Cannam |
---|---|
date | Thu, 19 Feb 2015 17:17:20 +0000 |
parents | bb4507f24dc9 |
children | 175c8f044e7c |
line wrap: on
line diff
--- a/src/MatchFeatureFeeder.h Thu Feb 19 16:57:19 2015 +0000 +++ b/src/MatchFeatureFeeder.h Thu Feb 19 17:17:20 2015 +0000 @@ -41,7 +41,7 @@ * feature vector as normal for the input that is still going on, * and an empty vector for the one that has ended. */ - void feed(std::vector<double> f1, std::vector<double> f2); + void feed(feature_t f1, feature_t f2); /** * Get the best estimate for the frame in the reference (f1) @@ -78,8 +78,8 @@ Finder m_finder; // I own this, and it refers to m_pm1 - std::queue<std::vector<double> > m_q1; - std::queue<std::vector<double> > m_q2; + std::queue<feature_t> m_q1; + std::queue<feature_t> m_q2; vector<int> m_fpx; vector<int> m_fpy;