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

Histogram.BuildSum Method (BitmapData, Int32)

Builds the histogram for specified bitmap data. Histogram is based on the value of channel at specified index.

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

Syntax

Visual Basic
Public Sub BuildSum ( _
	bitmapData As BitmapData, _
	channel As Integer _
)
C#
public void BuildSum(
	BitmapData bitmapData,
	int channel
)

Parameters

bitmapData

Type: Aurigma.GraphicsMill.BitmapData

BitmapData class instance to build the histogram for.
channel

Type: System.Int32

Number of channel to build histogram for.

Remarks

This overload of BuildSum(BitmapData, Int32) method can build histogram only for the single channel. If you need to build histogram for several channels (e.g. for two channels), you should use an overload with array of booleans.

See Also

Reference