コード例 #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;
 }
コード例 #4
0
 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;
 }
コード例 #7
0
 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;
 }