Converts a High Dynamic Range image to a 24-bit RGB image using a global operator inspired by photoreceptor physiology of the human visual system.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public static FIBITMAP TmoReinhard05(
	FIBITMAP src,
	double intensity,
	double contrast
)
Visual Basic (Declaration)
Public Shared Function TmoReinhard05 ( _
	src As FIBITMAP, _
	intensity As Double, _
	contrast As Double _
) As FIBITMAP
Visual C++
public:
static FIBITMAP TmoReinhard05(
	FIBITMAP src, 
	double intensity, 
	double contrast
)

Parameters

src
Type: FreeImageAPI..::.FIBITMAP
Handle to a FreeImage bitmap.
intensity
Type: System..::.Double
Controls the overall image intensity in the range [-8, 8].
contrast
Type: System..::.Double
Controls the overall image contrast in the range [0.3, 1.0[.

Return Value

Handle to a FreeImage bitmap.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also