1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-07-05 13:51:31 -05:00
butterflow-ui/butterflow-ui/FlowFilterType.cs
2018-07-04 00:35:08 -05:00

18 lines
427 B
C#

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,
/// <summary> Gaussian. </summary>
gaussian
}
}