C# Class Accord.Imaging.Filters.HighBoost

High boost filter.

The High-boost filter can be used to emphasize high frequency components (i.e. points of contrast) without removing the low frequency ones.

This filter implementation has been contributed by Diego Catalano.

Inheritance: Convolution
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
HighBoost ( ) : System

Initializes a new instance of the HighBoost class.

HighBoost ( int boost ) : System

Initializes a new instance of the HighBoost class.

HighBoost ( int boost, int size ) : System

Initializes a new instance of the HighBoost class.

Private Methods

Method Description
createFilter ( ) : void

Method Details

HighBoost() public method

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

HighBoost() public method

Initializes a new instance of the HighBoost class.
public HighBoost ( int boost ) : System
boost int The boost value. Default is 8.
return System

HighBoost() public method

Initializes a new instance of the HighBoost class.
public HighBoost ( int boost, int size ) : System
boost int The boost value. Default is 8.
size int The kernel size. Default is 3.
return System