added DTW to app
[gsk.git] / GestureDetectionApp / GestureRecognition / src / at / mus / recognition / Result.java
blob803262160cf29c460327e9b9d7cf38c1dd9a8295
1 package at.mus.recognition;
3 public class Result {
4 private Template tpl;
5 private double match;
7 public Result(Template tpl, double match) {
8 super();
9 this.tpl = tpl;
10 this.match = match;
13 public Template getTemplate() {
14 return tpl;
17 public void setTemplate(Template tpl) {
18 this.tpl = tpl;
21 public double getMatch() {
22 return match;
25 public void setMatch(double match) {
26 this.match = match;