Example #1
0
 public BrightnessCorrection(double adjustValue)
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Example #2
0
 public ContrastCorrection(double factor)
 {
     this.baseFilter = new HSLLinear();
     this.Factor = factor;
 }
Example #3
0
 public BrightnessCorrection()
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = 0.05;
 }
 public SaturationCorrection(double adjustValue)
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Example #5
0
 public ContrastCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.Factor = 1.25;
 }
Example #6
0
 public BrightnessCorrection(double adjustValue)
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
 public SaturationCorrection()
 {
     this.baseFilter  = new HSLLinear();
     this.AdjustValue = 0.05;
 }
Example #8
0
 public BrightnessCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = 0.05;
 }
Example #9
0
 public SaturationCorrection(double adjustValue)
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = adjustValue;
 }
Example #10
0
 public SaturationCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.AdjustValue = 0.05;
 }
 public ContrastCorrection(double factor)
 {
     this.baseFilter = new HSLLinear();
     this.Factor     = factor;
 }
 public ContrastCorrection()
 {
     this.baseFilter = new HSLLinear();
     this.Factor     = 1.25;
 }