public FaceEventArgs(FaceEventType type, DirectionEventArgs direction) { this.EventType = type; this.Direction = direction; }
public FaceEventArgs(FaceEventType type, FaceRecognizedEventArgs faceRecognized) { this.EventType = type; this.FaceRecognized = faceRecognized; }
public FaceEventArgs(FaceEventType type, PositionEventArgs position) { this.EventType = type; this.Position = position; }
public FaceEventArgs(FaceEventType type, FacialExpressionEventArgs facialExpression) { this.EventType = type; this.FacialExpression = facialExpression; }
public FaceEventArgs(FaceEventType type) { this.EventType = type; }