mirror of
https://github.com/wagesj45/butterflow-ui.git
synced 2025-09-09 03:00:39 -05:00
Saving Configurations to Files
This commit is contained in:
parent
5083716c05
commit
50eb034ac9
9 changed files with 133 additions and 19 deletions
32
butterflow-ui/OptionsConfigurationFile.cs
Normal file
32
butterflow-ui/OptionsConfigurationFile.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace butterflow_ui
|
||||
{
|
||||
/// <summary> An options configuration file. </summary>
|
||||
[Serializable]
|
||||
public class OptionsConfigurationFile
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public string PlaybackRate { get; set; }
|
||||
public bool KeepAudio { get; set; }
|
||||
public bool KeepSubregions { get; set; }
|
||||
public bool LosslessQuality { get; set; }
|
||||
public bool SmoothMotion { get; set; }
|
||||
public bool LockAspectRatio { get; set; }
|
||||
public bool FastPyramid { get; set; }
|
||||
public decimal PyramidScale { get; set; }
|
||||
public int Levels { get; set; }
|
||||
public int WindowSize { get; set; }
|
||||
public int Iterations { get; set; }
|
||||
public int PixelNeighborhood { get; set; }
|
||||
public decimal SmoothDerivativeStandardDeviation { get; set; }
|
||||
public FlowFilterType FlowFilterType { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue