This documentation is for the old version. Go to the latest Graphics Mill docs

HistogramEqualize Constructor (Boolean[], Histogram)

Create and initializes new HistogramEqualize class instance. Here you can specify what channels to process with this transform. Besides of this, you can initialize Histogram property with custom histogram.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub New ( _
	channels As Boolean(), _
	histogram As Histogram _
)
C#
public HistogramEqualize(
	bool[] channels,
	Histogram histogram
)

Parameters

channels

Type: System.Boolean []

Array of flags specifying what channels to apply effect at. If array item is true, transform will be applied at channel with appropriate index. Otherwise this channel is skipped. You can change to this array later through the property Channels.
histogram

Type: Aurigma.GraphicsMill.Histogram

Histogram class instance containing a histogram to equalize. Can be null. You can change it later using Histogram property.

See Also

Reference