Calculates and returns a histogram built from the sum of each channel luminosities of the pixel. You can include or exclude alpha channel from this sum.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Type: System.Boolean
Flag that specify whether to include alpha channel into the histogram calculation.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]); }