public GestureRecognizedEventArgs(HandDetail detail, HandGesture state, double avg, double min, double max) { this.HandDetail = detail; this.Gesture = state; this.AverageValue = avg; this.MinimumValue = min; this.MaximumValue = max; }
public HandEventArgs(HandDetail handdata, Point location) { this.HandData = handdata; this.HandLocation = location; }