Copiste  0.1
 All Classes Functions Variables Enumerations Friends Pages
compare.h
1 /*
2  * This file is part of Copiste.
3  *
4  * Copiste is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Copiste is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Copiste. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 
19 #ifndef INCLUDED_COMPAREH
20 #define INCLUDED_COMPAREH
21 
22 #include <filters/filter.h>
23 
24 #include <boost/numeric/ublas/matrix.hpp>
25 #include <boost/archive/text_oarchive.hpp>
26 #include <boost/archive/text_iarchive.hpp>
27 #include <boost/serialization/vector.hpp>
28 
29 #include <fstream>
30 
31 using namespace boost::numeric;
32 
34 class CompareFilter : public Filter
35 {
36  public:
37  CompareFilter();
38 
40  bool loadProfile(string filename);
41 
43  void transform(vector<float> data);
44 
46  int size() { return mPatterns.size1(); }
48  float value(int idx);
49 
51  void setString(string key, string value);
53  string getString(string key);
54 
56  float min();
58  float max();
59  private:
60  ublas::matrix<int> mPatterns;
61  vector<int> mEnergy;
62  string mFilename;
63  vector<float> mResult;
64 };
65 
66 #endif
67