TonemapMantiuk Constructor |
http://www.emgu.com
Creates TonemapMantiuk object
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic TonemapMantiuk(
float gamma = 1f,
float scale = 0.7f,
float saturation = 1f
)
Public Sub New (
Optional gamma As Single = 1F,
Optional scale As Single = 0.7F,
Optional saturation As Single = 1F
)
public:
TonemapMantiuk(
float gamma = 1f,
float scale = 0.7f,
float saturation = 1f
)
new :
?gamma : float32 *
?scale : float32 *
?saturation : float32
(* Defaults:
let _gamma = defaultArg gamma 1f
let _scale = defaultArg scale 0.7f
let _saturation = defaultArg saturation 1f
*)
-> TonemapMantiuk
Parameters
- gamma (Optional)
- Type: SystemSingle
gamma value for gamma correction. - scale (Optional)
- Type: SystemSingle
contrast scale factor. HVS response is multiplied by this parameter, thus compressing dynamic range. Values from 0.6 to 0.9 produce best results. - saturation (Optional)
- Type: SystemSingle
saturation enhancement value.
See Also