You are here: Start » AVL.NET » AVL.GetHistogramBin
Returns the value of a single histogram bin.
| Namespace: | AvlNet |
|---|---|
| Assembly: | AVL.NET.dll |
Syntax
C++
C#
public static void GetHistogramBin ( AvlNet.Histogram inHistogram, int inIndex, bool inInverse, out int outValue, NullableValue<float> outBinStart, NullableValue<float> outBinEnd )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() | inHistogram | AvlNet.Histogram | Input histogram. | ||
![]() | inIndex | int | <0, +INF> | Input bin index. | |
![]() | inInverse | bool | Reversed order of bins. | ||
![]() | outValue | int | Output value of the bin. | ||
![]() | outBinStart | AvlNet.NullableValue<float> | Lower limit of the bin. Can be null to skip this parameter calculation. | ||
![]() | outBinEnd | AvlNet.NullableValue<float> | Upper limit of the bin. Can be null to skip this parameter calculation. |
Errors
List of possible exceptions:
| Error type | Description |
|---|---|
| DomainError | Incorrect index on input in GetHistogramBin. |
Function Overrides
- GetHistogramBin(Histogram, Int32, Boolean, Int32)
- GetHistogramBin(Histogram, Int32, Boolean, Int32, Single, Single)


