1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-09-09 03:00:39 -05:00

Advanced Options

Added several advanced options.
This commit is contained in:
Jordan Wages 2018-07-03 23:26:42 -05:00
commit 3af7fd2b2c
8 changed files with 214 additions and 21 deletions

View file

@ -249,6 +249,24 @@ namespace butterflow_ui.Localization {
}
}
/// <summary>
/// Looks up a localized string similar to Flow Filter.
/// </summary>
public static string FlowFilterLabel {
get {
return ResourceManager.GetString("FlowFilterLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filter used for optical flow estimation..
/// </summary>
public static string FlowFilterTooltip {
get {
return ResourceManager.GetString("FlowFilterTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Height.
/// </summary>
@ -303,6 +321,24 @@ namespace butterflow_ui.Localization {
}
}
/// <summary>
/// Looks up a localized string similar to Keep Subregions.
/// </summary>
public static string KeepSubregionsLabel {
get {
return ResourceManager.GetString("KeepSubregionsLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Renders subregions not explicitly specified..
/// </summary>
public static string KeepSubregionsTooltip {
get {
return ResourceManager.GetString("KeepSubregionsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Levels.
/// </summary>

View file

@ -240,12 +240,24 @@
<data name="FastPyramidsTooltip" xml:space="preserve">
<value />
</data>
<data name="FlowFilterLabel" xml:space="preserve">
<value>Flow Filter</value>
</data>
<data name="FlowFilterTooltip" xml:space="preserve">
<value>Filter used for optical flow estimation.</value>
</data>
<data name="IterationsLabel" xml:space="preserve">
<value>Pyramid iterations</value>
</data>
<data name="IterationsTooltip" xml:space="preserve">
<value>The number of iterations to use for each pyramid layer.</value>
</data>
<data name="KeepSubregionsLabel" xml:space="preserve">
<value>Keep Subregions</value>
</data>
<data name="KeepSubregionsTooltip" xml:space="preserve">
<value>Renders subregions not explicitly specified.</value>
</data>
<data name="LevelsLabel" xml:space="preserve">
<value>Levels</value>
</data>