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 System.Single, _
ByRef As System.Single, _
ByVal As System.Single, _
ByVal As System.Boolean, _
ByVal As System.Boolean _
)
'Usage
Dim instance As DicomImage
Dim Min As System.Single
Dim Max As System.Single
Dim Centile As System.Single
Dim ScaleLUT As System.Boolean
Dim ScaleRescale As System.Boolean
instance.GetMinAndMax(Min, Max, Centile, ScaleLUT, ScaleRescale)
public void GetMinAndMax(
out System.float ,
out System.float ,
System.float ,
System.bool ,
System.bool
)
public procedure GetMinAndMax(
Out : System.Single;
Out : System.Single;
: System.Single;
: System.Boolean;
: System.Boolean
);
public function GetMinAndMax(
: System.float,
: System.float,
: System.float,
: System.boolean,
: System.boolean
);
public: void GetMinAndMax(
[PARAMFLAG::Out] System.float ,
[PARAMFLAG::Out] System.float ,
System.float ,
System.bool ,
System.bool
)
public:
void GetMinAndMax(
[Out] System.float ,
[Out] System.float ,
System.float ,
System.bool ,
System.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.8 or higher
See Also