'Declaration Public Function Histogram( _ ByVal MinValue As Integer, _ ByVal MaxValue As Integer, _ ByVal BinSize As Integer _ ) As Integer()
'Usage Dim instance As DicomImage Dim MinValue As Integer Dim MaxValue As Integer Dim BinSize As Integer Dim value() As Integer value = instance.Histogram(MinValue, MaxValue, BinSize)
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.