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
Afficher le fichier Open project: accord-net/framework Class Usage Examples

Méthodes publiques

Méthode Description
NiblackThreshold ( ) : System

Initializes a new instance of the NiblackThreshold class.

Méthodes protégées

Méthode Description
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

Method Details

NiblackThreshold() public méthode

Initializes a new instance of the NiblackThreshold class.
public NiblackThreshold ( ) : System
Résultat System

ProcessFilter() protected méthode

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