GetMinAndMax(Single,Single,Single,Boolean,Boolean) Method
In This Topic
Find the maximum and minimum pixel data values in the pixel data
Syntax
'Declaration
Public Overloads Sub GetMinAndMax( _
ByRef As Single, _
ByRef As Single, _
ByVal As Single, _
ByVal As Boolean, _
ByVal As Boolean _
)
'Usage
Dim instance As DicomDataSet
Dim Min As Single
Dim Max As Single
Dim Centile As Single
Dim ScaleLUT As Boolean
Dim ScaleRescale As Boolean
instance.GetMinAndMax(Min, Max, Centile, ScaleLUT, ScaleRescale)
public void GetMinAndMax(
out float ,
out float ,
float ,
bool ,
bool
)
public:
void GetMinAndMax(
[Out] float ,
[Out] float ,
float ,
bool ,
bool
)
Parameters
- Min
- The minimum value found
- Max
- The maximum value found
- Centile
- Centile as Float
- ScaleLUT
- Whether to apply modality lookup table transformation
- ScaleRescale
- Whether to apply modality rescale slope and offset transformations
Requirements
Target Platforms: .NET CLR 4.0 or higher
See Also