Inherits object.
|
| | count = property |
| | int: The number of elements corresponds to the number of possible gray values. More...
|
| |
| | max = property |
| | float: The maximum gray value of the histogram. More...
|
| |
| | mean = property |
| | float: Mean value of all pixels. More...
|
| |
| | median = property |
| | int: The median index (index of the histogram slot, at which roughly 50% of the pixels are darker and 50% of the pixels are brighter than corresponding slot's gray value). More...
|
| |
| | min = property |
| | float: The minimum gray value of the histogram. More...
|
| |
| | mode = property |
| | float: The mode (the most common gray value) of the histogram. More...
|
| |
| | num_pixels = property |
| | int: Total number of pixels taken into account. More...
|
| |
| | standard_deviation = property |
| | float: The standard deviation of the histogram. More...
|
| |
| | values = property |
| | List[int]: The actual histogram values. More...
|
| |
| | variance = property |
| | float: The variance of the histogram. More...
|
| |
A single histogram result.
Use [] to access to get the count for a value.