class DTWOneResult{ int tIndex; float dtwDistance; int[][] warpingPath; }
tIndex |
Index of best matching template returned by algorithm run |
Method to set: void setTIndex( int newValue ); |
|
Method to get: int getTIndex( ); |
|
dtwDistance |
DTW distance for the best matching template |
Method to set: void setDtwDistance( float newValue ); |
|
Method to get: float getDtwDistance( ); |
|
warpingPath |
DTW warping path for the template. |
Method to set: void setWarpingPath( int[][] newPath ); |
|
Method to get: int[][] getWarpingPath( ); |