C# Class Accord.Imaging.Filters.Exponential

Exponential filter.
Simple exp image filter. Applies the System.Math.Exp function for each pixel in the image, clipping values as needed. The resultant image can be converted back using the Logarithm filter.
Inheritance: BaseInPlaceFilter
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Exponential ( ) : System

Initializes a new instance of the Exponential class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image ) : void

Process the filter on the specified image.

Method Details

Exponential() public method

Initializes a new instance of the Exponential class.
public Exponential ( ) : System
return System

ProcessFilter() protected method

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image ) : void
image Accord.Imaging.UnmanagedImage Source image data.
return void