http://www.emgu.com
Creates TonemapDrago object.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic TonemapDrago(
float gamma = 1f,
float saturation = 1f,
float bias = 0.85f
)
Public Sub New (
Optional gamma As Single = 1F,
Optional saturation As Single = 1F,
Optional bias As Single = 0.85F
)
public:
TonemapDrago(
float gamma = 1f,
float saturation = 1f,
float bias = 0.85f
)
new :
?gamma : float32 *
?saturation : float32 *
?bias : float32
(* Defaults:
let _gamma = defaultArg gamma 1f
let _saturation = defaultArg saturation 1f
let _bias = defaultArg bias 0.85f
*)
-> TonemapDrago
Parameters
- gamma (Optional)
- Type: SystemSingle
gamma value for gamma correction. - saturation (Optional)
- Type: SystemSingle
positive saturation enhancement value. 1.0 preserves saturation, values greater than 1 increase saturation and values less than 1 decrease it. - bias (Optional)
- Type: SystemSingle
value for bias function in [0, 1] range. Values from 0.7 to 0.9 usually give best results, default value is 0.85.
See Also