RetinaFastToneMappingSetup Method |
http://www.emgu.com
Updates tone mapping behaviors by adjusting the local luminance computation area
Namespace:
Emgu.CV.Bioinspired
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void Setup(
float photoreceptorsNeighborhoodRadius = 3f,
float ganglioncellsNeighborhoodRadius = 1f,
float meanLuminanceModulatorK = 1f
)
Public Sub Setup (
Optional photoreceptorsNeighborhoodRadius As Single = 3F,
Optional ganglioncellsNeighborhoodRadius As Single = 1F,
Optional meanLuminanceModulatorK As Single = 1F
)
public:
void Setup(
float photoreceptorsNeighborhoodRadius = 3f,
float ganglioncellsNeighborhoodRadius = 1f,
float meanLuminanceModulatorK = 1f
)
member Setup :
?photoreceptorsNeighborhoodRadius : float32 *
?ganglioncellsNeighborhoodRadius : float32 *
?meanLuminanceModulatorK : float32
(* Defaults:
let _photoreceptorsNeighborhoodRadius = defaultArg photoreceptorsNeighborhoodRadius 3f
let _ganglioncellsNeighborhoodRadius = defaultArg ganglioncellsNeighborhoodRadius 1f
let _meanLuminanceModulatorK = defaultArg meanLuminanceModulatorK 1f
*)
-> unit
Parameters
- photoreceptorsNeighborhoodRadius (Optional)
- Type: SystemSingle
The first stage local adaptation area - ganglioncellsNeighborhoodRadius (Optional)
- Type: SystemSingle
The second stage local adaptation area - meanLuminanceModulatorK (Optional)
- Type: SystemSingle
The factor applied to modulate the meanLuminance information (default is 1, see reference paper)
See Also