C# Class Accord.Imaging.Filters.NiblackThreshold

Niblack Threshold.

The Niblack filter is a local thresholding algorithm that separates white and black pixels given the local mean and standard deviation for the current window.

This filter implementation has been contributed by Diego Catalano.

References: W. Niblack, An Introduction to Digital Image Processing, pp. 115-116. Prentice Hall, 1986.

Inheritance: BaseFilter
Mostrar archivo Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
NiblackThreshold ( ) : System

Initializes a new instance of the NiblackThreshold class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

Method Details

NiblackThreshold() public method

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

ProcessFilter() protected method

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
return void