HistogramReport
A report describing a pixel value classification.
Elements
| Name | Type | Description |
|---|---|---|
| histogram | int* | An array describing the number of pixels that fell into each class. |
| histogramCount | int | The number of elements in the histogram array. The number of elements equals the value you provided in numClasses. |
| min | float | The smallest pixel value that the function classified. |
| max | float | The largest pixel value that the function classified. |
| start | float | The smallest pixel value that fell into the first class. |
| width | float | The size of each class. |
| mean | float | The mean value of the pixels that the function classified. |
| stdDev | float | The standard deviation of the pixels that the function classified. |
| numPixels | int | The number of pixels that the function classified. The mask and the given min and max influence this element. |