Simply3DScan
Filter.cs
Go to the documentation of this file.
1 namespace Configuration
2 {
3  public class Filter
4  {
11  public bool UseHslFilter { get; set; }
18  public float SaturationMin { get; set; }
25  public float SaturationMax { get; set; }
32  public float LuminanceMin { get; set; }
39  public float LuminanceMax { get; set; }
46  public int HueMin { get; set; }
53  public int HueMax { get; set; }
60  public bool UseColorFilter { get; set; }
67  public int FilterRedMin { get; set; }
74  public int FilterRedMax { get; set; }
81  public int FilterGreenMin { get; set; }
88  public int FilterGreenMax { get; set; }
95  public int FilterBlueMin { get; set; }
102  public int FilterBlueMax { get; set; }
109  public GrayFilter GrayFilter { get; set; }
116  public bool UseThresholdFilter { get; set; }
123  public int Threshold { get; set; }
130  public bool UseErosionFilter { get; set; }
137  public bool UseDiletationFilter { get; set; }
138  }
139 }
int FilterGreenMax
Gets or sets the filter green maximum.
Definition: Filter.cs:88
float LuminanceMin
Gets or sets the luminance minimum.
Definition: Filter.cs:32
int Threshold
Gets or sets the threshold.
Definition: Filter.cs:123
bool UseHslFilter
Gets or sets a value indicating whether [use HSL filter].
Definition: Filter.cs:11
bool UseThresholdFilter
Gets or sets a value indicating whether [use threshold filter].
Definition: Filter.cs:116
int FilterGreenMin
Gets or sets the filter green minimum.
Definition: Filter.cs:81
int FilterRedMin
Gets or sets the filter red minimum.
Definition: Filter.cs:67
int FilterBlueMax
Gets or sets the filter blue maximum.
Definition: Filter.cs:102
float LuminanceMax
Gets or sets the luminance maximum.
Definition: Filter.cs:39
int FilterRedMax
Gets or sets the filter red maximum.
Definition: Filter.cs:74
int HueMax
Gets or sets the hue maximum.
Definition: Filter.cs:53
bool UseDiletationFilter
Gets or sets a value indicating whether [use diletation filter].
Definition: Filter.cs:137
bool UseColorFilter
Gets or sets a value indicating whether [use color filter].
Definition: Filter.cs:60
int FilterBlueMin
Gets or sets the filter blue minimum.
Definition: Filter.cs:95
int HueMin
Gets or sets the hue minimum.
Definition: Filter.cs:46
float SaturationMax
Gets or sets the saturation maximum.
Definition: Filter.cs:25
float SaturationMin
Gets or sets the saturation minimum.
Definition: Filter.cs:18
bool UseErosionFilter
Gets or sets a value indicating whether [use erosion filter].
Definition: Filter.cs:130