'Declaration
Public Function Histogram( _ ByVal MinValue As System.Integer, _ ByVal MaxValue As System.Integer, _ ByVal BinSize As System.Integer _ ) As System.Integer()
'Usage
Dim instance As DicomImage Dim MinValue As System.Integer Dim MaxValue As System.Integer Dim BinSize As System.Integer Dim value() As System.Integer value = instance.Histogram(MinValue, MaxValue, BinSize)
public function Histogram( MinValue: System.Integer; MaxValue: System.Integer; BinSize: System.Integer ): System.array of Integer;
Parameters
- MinValue
- The lowest pixel value to be included
- MaxValue
- The highest pixel value to be included
- BinSize
- The number of adjacent pixel values to be grouped into each bin
Return Value
An integer array containing the distribution.