RapidLib  v2.1.0
A simple library for interactive machine learning
warpPath.h
Go to the documentation of this file.
1 
9 #ifndef warpPath_h
10 #define warpPath_h
11 
12 #include <vector>
13 
15 class warpPath {
16 public:
17  warpPath();
18  ~warpPath();
23  void add(int x, int y);
24 
25  std::vector< std::pair<int, int> > indices;
26 };
27 
29 struct warpInfo {
30 public:
32  double cost;
33 
34 };
35 
36 #endif /* warpPath_h */
~warpPath()
Definition: warpPath.cpp:13
void add(int x, int y)
Definition: warpPath.cpp:15
Definition: warpPath.h:15
warpPath()
Definition: warpPath.cpp:12
std::vector< std::pair< int, int > > indices
Definition: warpPath.h:25
warpPath path
Definition: warpPath.h:31
Definition: warpPath.h:29
double cost
Definition: warpPath.h:32