AccidentalNoise.ImplicitBrightContrast.ImplicitBrightContrast C# (CSharp) Метод

ImplicitBrightContrast() публичный Метод

public ImplicitBrightContrast ( ImplicitModuleBase source, Double brightness, Double contrastThreshold, Double contrastFactor ) : System
source ImplicitModuleBase
brightness Double
contrastThreshold Double
contrastFactor Double
Результат System
        public ImplicitBrightContrast(ImplicitModuleBase source, Double brightness, Double contrastThreshold, Double contrastFactor)
        {
            this.Source = source;
            this.Brightness = new ImplicitConstant(brightness);
            this.ContrastThreshold = new ImplicitConstant(contrastThreshold);
            this.ContrastFactor = new ImplicitConstant(contrastFactor);
        }
ImplicitBrightContrast