Returns an array containing the distribution of raw pixel values.
public System.int[] Histogram(
System.int ,
System.int ,
System.int
)
public function Histogram(
: System.Integer;
: System.Integer;
: System.Integer
): System.array of Integer;
public function Histogram(
: System.int,
: System.int,
: System.int
) : System.int[];
public: System.int[]* Histogram(
System.int ,
System.int ,
System.int
)
public:
System.array<int>^ Histogram(
System.int ,
System.int ,
System.int
)
'Declaration
Public Function Histogram( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal 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)
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.
Target Platforms: .NET CLR 4.8 or higher