Example #1
0
 public void DeterminePerformance(List <Skeleton> skeletons)
 {
     try
     {
         this.Performance = DTW <Skeleton> .Distance(this.Skeletons, skeletons, new SkeletonDistance());
     }
     catch (Exception)
     {
         this.Performance = 100;
     }
 }