| ImageEn, unit histogrambox |
|
THistogramBox.HistogramKind
Declaration
property HistogramKind: THistogramKind;
Description
Select which channels are shown:
| Value | Description |
| hkRed | Red channel |
| hkGreen | Green channel |
| hkBlue | Blue channel |
| hkGray | Gray-scale level |
| hkHue | Hue (of HSV values) |
Note: Multiple channels can be shown.
Default: [hkGray]
// Show RGB histograms
HistogramBox1.HistogramKind := [hkRed, hkGreen, hkBlue];
