Ejemplo n.º 1
0
 public BrightnessCorrection(double adjustValue)
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Ejemplo n.º 2
0
 public ContrastCorrection(double factor)
 {
     this.baseFilter = new HSLLinear();
     this.Factor = factor;
 }
Ejemplo n.º 3
0
 public BrightnessCorrection()
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = 0.05;
 }
Ejemplo n.º 4
0
 public SaturationCorrection(double adjustValue)
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Ejemplo n.º 5
0
 public ContrastCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.Factor = 1.25;
 }
Ejemplo n.º 6
0
 public BrightnessCorrection(double adjustValue)
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Ejemplo n.º 7
0
 public SaturationCorrection()
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = 0.05;
 }
Ejemplo n.º 8
0
 public BrightnessCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = 0.05;
 }
Ejemplo n.º 9
0
 public SaturationCorrection(double adjustValue)
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Ejemplo n.º 10
0
 public SaturationCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = 0.05;
 }
Ejemplo n.º 11
0
 public ContrastCorrection(double factor)
 {
     this.baseFilter = new HSLLinear();
     this.Factor     = factor;
 }
Ejemplo n.º 12
0
 public ContrastCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.Factor     = 1.25;
 }