public TrackingViewModel(User user)
 {
     _user             = user;
     _user.Updated    += _user_Updated;
     _motionCalculator = new MotionCalculator();
     _gestureDetection = new Models.GestureDetection();
     _capturedSequence = new LimitedObservations <double>(_gestureDetection.ObservationLength);
 }
Ejemplo n.º 2
0
 public TrackingViewModel(User user)
 {
     _user = user;
     _user.Updated += _user_Updated;
     _motionCalculator = new MotionCalculator();
     _gestureDetection = new Models.GestureDetection();
     _capturedSequence = new LimitedObservations<double>(_gestureDetection.ObservationLength);
 }