using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace butterflow_ui { /// Values that represent a flow filter type used for optical flow calculations. [Serializable] public enum FlowFilterType { /// Box. box, /// Gaussian. gaussian } }