TonemapDurand Constructor |
http://www.emgu.com
Creates TonemapDurand object.
Namespace:
Emgu.CV.XPhoto
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic TonemapDurand(
float gamma = 1f,
float contrast = 4f,
float saturation = 1f,
float sigmaSpace = 2f,
float sigmaColor = 2f
)
Public Sub New (
Optional gamma As Single = 1F,
Optional contrast As Single = 4F,
Optional saturation As Single = 1F,
Optional sigmaSpace As Single = 2F,
Optional sigmaColor As Single = 2F
)
public:
TonemapDurand(
float gamma = 1f,
float contrast = 4f,
float saturation = 1f,
float sigmaSpace = 2f,
float sigmaColor = 2f
)
new :
?gamma : float32 *
?contrast : float32 *
?saturation : float32 *
?sigmaSpace : float32 *
?sigmaColor : float32
(* Defaults:
let _gamma = defaultArg gamma 1f
let _contrast = defaultArg contrast 4f
let _saturation = defaultArg saturation 1f
let _sigmaSpace = defaultArg sigmaSpace 2f
let _sigmaColor = defaultArg sigmaColor 2f
*)
-> TonemapDurand
Parameters
- gamma (Optional)
- Type: SystemSingle
gamma value for gamma correction. - contrast (Optional)
- Type: SystemSingle
resulting contrast on logarithmic scale, i. e. log(max / min), where max and min are maximum and minimum luminance values of the resulting image. - saturation (Optional)
- Type: SystemSingle
saturation enhancement value. - sigmaSpace (Optional)
- Type: SystemSingle
bilateral filter sigma in color space - sigmaColor (Optional)
- Type: SystemSingle
bilateral filter sigma in coordinate space
See Also