diff --git a/butterflow-ui/FlowFilterType.cs b/butterflow-ui/FlowFilterType.cs
new file mode 100644
index 0000000..2d125b0
--- /dev/null
+++ b/butterflow-ui/FlowFilterType.cs
@@ -0,0 +1,18 @@
+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,
+ /// Guassian.
+ guassian
+ }
+}
diff --git a/butterflow-ui/Localization/Localization.Designer.cs b/butterflow-ui/Localization/Localization.Designer.cs
index db8c665..afd0955 100644
--- a/butterflow-ui/Localization/Localization.Designer.cs
+++ b/butterflow-ui/Localization/Localization.Designer.cs
@@ -249,6 +249,24 @@ namespace butterflow_ui.Localization {
}
}
+ ///
+ /// Looks up a localized string similar to Flow Filter.
+ ///
+ public static string FlowFilterLabel {
+ get {
+ return ResourceManager.GetString("FlowFilterLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filter used for optical flow estimation..
+ ///
+ public static string FlowFilterTooltip {
+ get {
+ return ResourceManager.GetString("FlowFilterTooltip", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Height.
///
@@ -303,6 +321,24 @@ namespace butterflow_ui.Localization {
}
}
+ ///
+ /// Looks up a localized string similar to Keep Subregions.
+ ///
+ public static string KeepSubregionsLabel {
+ get {
+ return ResourceManager.GetString("KeepSubregionsLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Renders subregions not explicitly specified..
+ ///
+ public static string KeepSubregionsTooltip {
+ get {
+ return ResourceManager.GetString("KeepSubregionsTooltip", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Levels.
///
diff --git a/butterflow-ui/Localization/Localization.resx b/butterflow-ui/Localization/Localization.resx
index ebf53cf..8fe7f88 100644
--- a/butterflow-ui/Localization/Localization.resx
+++ b/butterflow-ui/Localization/Localization.resx
@@ -240,12 +240,24 @@
+
+ Flow Filter
+
+
+ Filter used for optical flow estimation.
+
Pyramid iterations
The number of iterations to use for each pyramid layer.
+
+ Keep Subregions
+
+
+ Renders subregions not explicitly specified.
+
Levels
diff --git a/butterflow-ui/MainWindow.xaml b/butterflow-ui/MainWindow.xaml
index 0338a63..364caf6 100644
--- a/butterflow-ui/MainWindow.xaml
+++ b/butterflow-ui/MainWindow.xaml
@@ -11,12 +11,18 @@
x:Name="butterflowUIWindow"
Title="{x:Static loc:Localization.Title}" Height="600" Width="800">
-
+
+
+
+
+