C# Class Accord.Imaging.Filters.Logarithm

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

Public Methods

Method Description
Logarithm ( ) : System

Initializes a new instance of the Logarithm class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image ) : void

Process the filter on the specified image.

Method Details

Logarithm() public method

Initializes a new instance of the Logarithm class.
public Logarithm ( ) : 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