butterflow-ui/butterflow-ui/FlowFilterType.cs

19 lines
427 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace butterflow_ui
{
/// <summary> Values that represent a flow filter type used for optical flow calculations. </summary>
[Serializable]
public enum FlowFilterType
{
/// <summary> Box. </summary>
box,
2018-07-04 00:35:08 -05:00
/// <summary> Gaussian. </summary>
gaussian
}
}