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