Calculates and returns a histogram built from the sum of each channel luminosities of the pixel. You can exclude some channels from this sum.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Type: System.Boolean []
Array of flags specifying what channels to apply effect at. If array item is true, calculation will be done for the channel with appropriate index. Otherwise this channel is skipped.This histogram type is used in Adobe® Photoshop®.
Dim histogram As Aurigma.GraphicsMill.Histogram = _ bitmap.Statistics.GetSumHistogram(False) For i As Integer = 0 To histogram.Length - 1 Console.WriteLine(i & ": " & histogram(i)) Next
Aurigma.GraphicsMill.Histogram histogram = bitmap.Statistics.GetSumHistogram(false); for (int i = 0; i < histogram.Length; i++) { Console.WriteLine(i + ": " + histogram[i]); }