Calculates and returns a histogram built from the sum of each channel luminosities of the pixel.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public Histogram GetSumHistogram()
var histogram = bitmap.Statistics.GetSumHistogram(); for (int i = 0; i < histogram.Length; i++) { Console.WriteLine(i + ": " + histogram[i]); }