LinearAverages
The linear averages of an image.
Elements
| Name | Type | Description |
|---|---|---|
| columnAverages | float* | An array containing the mean pixel value of each column. |
| columnCount | int | The number of elements in the columnAverages array. |
| rowAverages | float* | An array containing the mean pixel value of each row. |
| rowCount | int | The number of elements in the rowAverages array. |
| risingDiagAverages | float* | An array containing the mean pixel value of each diagonal running from the lower left to the upper right of the inspected area of the image. |
| risingDiagCount | int | The number of elements in the risingDiagAverages array. |
| fallingDiagAverages | float* | An array containing the mean pixel value of each diagonal running from the upper left to the lower right of the inspected area of the image. |
| fallingDiagCount | int | The number of elements in the fallingDiagAverages array. |