Class ClaheFilterOptions

ClaheFilterOptions class

Provides options for configuring the Contrast-Limited Adaptive Histogram Equalization (CLAHE) filter.

public class ClaheFilterOptions : FilterOptionsBase

Constructors

NameDescription
ClaheFilterOptions(bool, int, int, double)Initializes a new instance of the ClaheFilterOptions class with the specified parameters.

Properties

NameDescription
ClipLimit { get; }Gets the contrast limiting threshold. Higher values allow more contrast; lower values limit the enhancement to prevent noise amplification.
IsGrayscale { get; }Gets a value indicating whether the filter operates in grayscale mode.
TilesNumberHorizontal { get; }Gets the number of tiles in the horizontal direction. Determines how many regions the image is divided into horizontally for local contrast equalization.
TilesNumberVertical { get; }Gets the number of tiles in the vertical direction. Determines how many regions the image is divided into vertically for local contrast equalization.

See Also