Click or drag to resize

TonemapDurand Class

http://www.emgu.com
This algorithm decomposes image into two layers: base layer and detail layer using bilateral filter and compresses contrast of the base layer thus preserving all the details. This implementation uses regular bilateral filter from opencv.
Inheritance Hierarchy

Namespace:  Emgu.CV.XPhoto
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public class TonemapDurand : Tonemap

The TonemapDurand type exposes the following members.

Constructors
  NameDescription
Public methodTonemapDurand
Creates TonemapDurand object.
Top
Properties
  NameDescription
Public propertyAlgorithmPtr
The pointer to the unamanged Algorith object
(Inherited from Tonemap.)
Public propertyContrast
Resulting contrast on logarithmic scale, i. e. log(max / min), where max and min are maximum and minimum luminance values of the resulting image.
Public propertyGamma
Positive value for gamma correction. Gamma value of 1.0 implies no correction, gamma equal to 2.2f is suitable for most displays.
(Inherited from Tonemap.)
Public propertyPtr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Public propertySaturation
Positive saturation enhancement value. 1.0 preserves saturation, values greater than 1 increase saturation and values less than 1 decrease it.
Public propertySigmaColor
bilateral filter sigma in coordinate space
Public propertySigmaSpace
Bilateral filter sigma in color space
Top
Methods
  NameDescription
Public methodDispose
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
Protected methodDisposeObject
Release the unmanaged memory associated with this TonemapDurand
(Overrides TonemapDisposeObject.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Destructor
(Inherited from DisposableObject.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodProcess
Tonemaps image.
(Inherited from Tonemap.)
Protected methodReleaseManagedResources
Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected field_algorithmPtr
The pointer to the unmanaged Algorithm object
(Inherited from Tonemap.)
Protected field_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Protected field_tonemapPtr
The pointer to the unmanaged Tonemap object
(Inherited from Tonemap.)
Top
See Also