Creates new Histogram instance.
Name | Description | |
---|---|---|
Histogram() |
Creates empty Histogram instance. |
|
Histogram(Bitmap) |
Creates new Histogram instance and builds the histogram for specified bitmap. Histogram is based on pixels luminosity. |
|
Histogram(BitmapData) |
Creates new Histogram instance and builds the histogram for specified bitmap data. Histogram is based on pixels luminosity. |
|
Histogram(Bitmap, Boolean) |
Creates new Histogram instance and builds the histogram for specified bitmap. Histogram is based on average of pixel channels values (sum of these values divided at channels number). You can specify whether alpha channel should be included into this sum. |
|
Histogram(Bitmap, Boolean[]) |
Creates new Histogram instance and builds the histogram for specified bitmap. Histogram is based on average of pixel channels values (sum of these values divided at channels number). You can specify what channels to include into this sum via channels argument. |
|
Histogram(Bitmap, Int32) |
Creates new Histogram instance and builds the histogram for specified bitmap. Histogram is based on the value of channel at specified index. |
|
Histogram(BitmapData, Boolean) |
Creates new Histogram instance and builds the histogram for specified bitmap data. Histogram is based on average of pixel channels values (sum of these values divided at channels number). You can specify whether alpha channel should be included into this sum. |
|
Histogram(BitmapData, Boolean[]) |
Creates new Histogram instance and builds the histogram for specified bitmap data. Histogram is based on average of pixel channels values (sum of these values divided at channels number). You can specify what channels to include into this sum via channels argument. |
|
Histogram(BitmapData, Int32) |
Creates new Histogram instance and builds the histogram for specified bitmap data. Histogram is based on the value of channel at specified index. |